Does anyone know of any functions that will convert numbers of different datatypes to their equivalent ASCII strings (like would be stored on disk). For example, let’s say I have an integer datatype. Integers are stored as 2-character ASCII strings. So if I have a number like 19789, what is the ASCII equivalent (in this case, it is “MM”)?
And then vice versa, if I have a given string, what is its numeric equivalent. Both Long Integers and Singles are stored with 4 characters; so given 4 such characters, what would be the equivalent Long Integer or Single value?