Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
SELECT 1 = SELECT A
SELECT 2 = SELECT B
SELECT 12 = SELECT L
SELECT 1
USE Customer
SELECT 2
USE Order
IF B.Ord_Cust=A.Cust_Num
* Do this
ENDIF
FUNCTION GetToken
PARAMETER InString
LOCAL Length
....
Length = Len(InString)
FOR I = 1 to Length
....
ENDFOR
....
FUNCTION GetToken( lcInString )
LOCAL lnLength
....
m.lnLength = Len(m.lcInString)
FOR I = 1 to m.lnLength
....
ENDFOR
....