History |
Hidden (forms)
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]
Example
Sub Click()
If MyForm.Hidden = TRUE Then
MyForm.Title = "Form Title"
MyForm.Show
End If
End Sub
| ||||||