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.
*... MAIN.PRG
STORE .F. TO done
DO WHILE !done
IF FILE("quit.txt")
DO exitapp
ELSE
DO OtherApp.PRG
ENDIF
ENDDO
QUIT
PROCEDURE exitapp
*... clean up code here
done = .T.
CLOSE ALL
CLEAR ALL
RETURN
*.... end of main.prg
*... OtherApp.PRG
STORE 600 TO nSeconds &&... ten minutes
DO WHILE .....
*... data entry code
@ SAY ......
@ GET ......
READ TIMEOUT nSeconds
STORE READKEY() TO nKey
DO CASE
CASE nKey = 20 &&... no change, timeout. Safe to quit.
CASE nKey = 276 &&... data changed, save? discard?
OTHERWISE &&... other keys pressed
ENDCASE
ENDDO
*... end of OtherApp.prg