Hidden |
Shows or hides a form. This form attribute also can be used to determine the current state of a form; if the form is shown, the Hidden attribute is FALSE. Otherwise, the Hidden attribute is TRUE. |
[formname].Hidden [= TRUE|FALSE value] |
Sub Click() If MyForm.Hidden = TRUE Then MyForm.Title = "Form Title" MyForm.Show End If End Sub |
Title |
Displays the form's window title string. |
[formname].Title [=string expression] The title can be assigned any valid string expression. |
Sub Click() MyForm.Title = "My form Title" MyForm.Show End Sub |