ValQ()
Syntax
Result.q = ValQ(String$)Description
Transform a string into a quad numeric value. The string can be an integer in decimal, hexadecimal (with '$' prefix) or binary (with '%' prefix) format.
Note: Strings containing a long integer can also be converted with Val(), 32 bit floats with ValF() and 64 bit floats with ValD().
Example:Debug ValQ("1024102410241024") ; will print '1024102410241024'. Debug ValQ("$10FFFFFFFF") ; will print '73014444031'. Debug ValQ("%1000") ; will print '8'.
Supported OS
Windows, Linux