Point.GetQuadIntValue (function)

Syntax Point.GetQuadIntValue param1,param2
Description Will return the value of a 64-bit QINT or QUINT point in the form of two 32-bit double integers.
Param1 Double. High value.
Param2 Double. Low value.
Example
Sub OnMouseUp(x As Long, y As Long, flags As Long)
'Declare variables
   Dim qhigh As Double
   Dim qlow As Double
   Dim result As Boolean
   Dim localpoint As New Point
'Initialize
 
localpoint.id =  "\\$LOCAL\$LOCAL.DATETIME_VARUPDATE"
'Gets the value of a QuadInt and places it in our two 32 bit Basic doubles
result = localpoint.GetQuadIntValue(qhigh,qlow)
If result = True Then
   MsgBox qhigh
   Msgbox qlow
   Else
   MsgBox "Error!"
   End If
End Sub
See also Point.SetQuadIntValue (function)