Small company logo:
   History
 
Advertising banner:
 
 Form.Hidden
Home • Help • Customization Tools • FCAS • Language Reference • Form.Hidden
 
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