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.
DECLARE INTEGER BlockInput IN user32 INTEGER fBlockIt
? BlockInput (1)
? "*** Input blocked"
FOR ii=1 TO 10
DO dataproc
ENDFOR
? BlockInput (0)
? "*** Input unblocked"
PROCEDURE dataproc
* it is just an emulation of a time-consuming procedure
LOCAL ii
WAIT WINDOW NOWAIT "Creating cursor..."
CREATE CURSOR cs (id N(6), dt D)
FOR ii=1 TO 10000
INSERT INTO cs VALUES (ii, date()-ii)
ENDFOR
WAIT CLEAR
? Chr(9) + "- cursor created at " + TTOC (datetime())
USE IN cs
RETURN