Syntax:
if: GUI
if: NOT GUI
Version Ref: 5.0
Description:
Allows you to test if you are running under a Graphical User Interface (GUI) environment or not.
GUI2/WEB (Version 6.0.00)
Syntax:
if: GUI2
if: NOT GUI2
Syntax:
if: WEB
if: NOT WEB
Description:
Allows you to test if you are running under a fileProWEB User Interface environment or not.
Version 6.0.02
x=@GUI.PAUSE()
Pauses automatic screen updating while in GI/Web.
x=@GUI.RESUME()
Resumes automatic screen updating while in GI/Web.
These functions are useful for hiding the output of some system commands while running processing. Output can sometimes cause undesired effects on a filePro screen or prevent some commands from updating the screen correctly. This should correct some text being displayed while outside of filePro's messaging.
Example:
Then: x=@GUI.PAUSE()
Then: SYSTEM command
Then: x=@GUI.RESUME()