UQINTFromString (function)

Syntax UQINTFromString param1,param2,param3
Description To convert one numeric string into UQINT , take a positive value with the highest value that can be taken by ULONGLONG and return it.
Param1 String.
Param2 Reference to Double.
Param3 Reference to Double.
Example
sub main()
??????Dim qlow as Double
??????Dim qhigh as Double
??????Dim qstr as String
??????Dim MyPoint as new Point ????????????' Declare the point object
??????MyPoint.Id = "QINT" ??????????' Set the point id
??????qstr = "1000000899876543212"
??????UQINTFromString qstr,qhigh1,qlow1
??????
??????ret = MyPoint.SetQuadIntValue(qhigh,qlow)
End Sub
See also QINTFromString (function)