rickesilaw
Programmer
We distribute an application to a number of firms and would like to have the ability to run the VFP command window from a menu or exe(password protected of course). Is there a way to do this?
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.
DO WHILE .T.
STORE SPACE(100) TO cmd
@ 0,0 GET cmd
READ
IF 'QUIT' $ UPPER(cmd)
RETURN
ENDIF
&cmd
ENDDO