<OBJECT>.SHOW()
Syntax
<OBJECT>.SHOW()
Description
The <OBJECT>.SHOW() method applies to:
Alpha Five (for <OBJECT> use the keyword "A5")
Control Panel (for <OBJECT> use the keyword "CONTROLPANEL")
Status Bar (for <OBJECT> use the keyword "STATUSBAR")
Trace Window (for <OBJECT> use the keyword "TRACE")
Browses (for <OBJECT> use either the <BROWSE> pointer or the name of the browse)
Forms (for <OBJECT> use either the <FORM> pointer or the name of the form)
Form Controls (for <OBJECT> use the <CONTROL> pointer or the address of the control)
The <OBJECT>.SHOW() method causes a window to fill the screen.
Supported By
Alpha Five Version 5 and Above
Limitations
Desktop applications only.
Example
The following example displays, then hides the Customer Information form window.
|
dim ptr as P ptr = form.load("Customer Information") ptr.show() ptr.hide() |
See Also
Form Functions and Methods, Browse Functions and Methods, Window Functions and Methods