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.
DIMENSION MyArray[5]
MyArray[1] = 'whatever'
res = MyUDF( @MyArray )
PROCEDURE MyUDF
LPARAMETERS aParam1
EXTERNAL ARRAY aParam1
if aParam1[1]='whatever'
RETURN 'good'
endif
RETURN 'bad'
ENDPROC