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.
oForm = CREATEOBJECT("Form")
WITH oForm
.Caption = "My docked report"
.Top = 50 && Or wherever you want
.Left = 50 && Or wherever you want
.WindowState = 0 && Normal
.Show()
ENDWITH
REPORT FORM &cRepName PREVIEW WINDOW (oForm.Name)
oForm.Release()