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.
LOCAL lnRow
ThisForm.ScaleMode = 3
ThisForm.DrawWidth = 1
FOR lnRow = 0 TO ThisForm.Height
ThisForm.ForeColor = RGB(0,0,255-255*lnRow/ThisForm.Height)
ThisForm.Line(0, lnRow, ThisForm.Width, lnRow)
NEXT lnRow