Used to find out whether the "end of initialization" code was run for a window.
This function can be used to avoid filling some controls whose modification code is run before the end of opening (when restoring stored values for instance).
// Modification code of the CBOX_Filtering check box
IF WinInitialized() = True THEN
FillList(CBOX_Filtering)
END
Syntax
<Result> = WinInitialized()
<Result>: Boolean
- True if the end of initialization code of window was run,
- False otherwise.