Advertising banner:
 
 
 A324
 
81203_43854_21.png 81203_43840_19.png


Attribute
Definition
Syntax
Example
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
MouseX,MouseY
Retrieves the last X and Y coordinates clicked on the form body (including any protected controls).
formname.MouseX
formname.MouseY
Sub Main()
        MyForm.MouseX
        MyForm.MouseY
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


hirosue Shino Web Site