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.
THISFORM.MyImage.Visible = .T.
FOR lnI = 1 to 25
THISFORM.MyImage.Height = THISFORM.MyImage.Height + 1
THISFORM.MyImage.Width = THISFORM.MyImage.Width + 1
Sleep(100)
ENDFOR
DECLARE Sleep IN WIN32API INTEGER iPeriod
FOR lnI = 1 to 160
this.parent.image1.Height = lnI
this.parent.image1.Width = lnI
Sleep(1)
ENDFOR
FOR lnI = 160 to 0 STEP -1
this.parent.image1.Height = lnI
this.parent.image1.Width = lnI
sleep(1)
ENDFOR