1
1
Fork 0
mirror of https://github.com/FellippeHeitor/InForm.git synced 2024-09-16 19:03:54 +00:00

Created __UI_KeepScreenHidden (markdown)

Fellippe Heitor 2018-06-17 18:55:33 -03:00
parent 049749f6c0
commit 9433085108

7
__UI_KeepScreenHidden.md Normal file

@ -0,0 +1,7 @@
The [[global variable|Global variables]] __UI_KeepScreenHidden can be set to True if you don't want InForm to show the main form immediately, which is useful when your program needs to perform any startup routines before the main form can be displayed.
In an [[BeforeInit]] event, set this variable to True to avoid showing the form immediately.
**Caution**
* If you *do* set __UI_KeepScreenHidden to True, don't forget to use _SCREENSHOW somewhere later in your program, or your main form will never be displayed and your program will keep running as a hidden window.