Purpose
Shows or hides a form.
This attribute can also be used to determine the current state of a form.
Syntax
[Form].Hidden [= TRUE | FALSE | Value]
TRUE | FALSE |
TRUE hides the form. |
Value |
-1 (True) or 0 (False) |
Example
Sub Click()
If MyForm.Hidden = TRUE Then
MyForm.Title = "Form Title"
MyForm.Show
End If
End Sub
|