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.
What is code to close all forms on a (VFP)screen programmaticly
FOR EACH loForm IN _Screen.Forms
loForm.Release()
ENDFOR
Will there be a way to recognize a form being a toolbar?
FOR EACH loForm IN _Screen.forms
IF LOWER( ALLTRIM( loForm.BaseClass ) ) == [toolbar]
LOOP
ELSE
IF loForm.WindowType = 1 && Modal
EXIT
ELSE
loForm.Release()
ENDIF
ENDIF
ENDFOR
In my app there will be a kind of toggle-switch which enables the use of 'size to maxscreen' as described in 1001 things.
As a form has been resized there is currently no way to 'resize-back' to the original size other than instanciating again. The toggle-switch is part of the menu.
The method I borrowed from 1001 things is more than just expand the window to fullscreen.
It resizes all controls in fact it acts as kind of zoom