Acc2002 Check status of a control

A

Abe Katz

Hello All,
How can I check thru code, the status on a control, if the control is
visible or not? (i change it many times thru code)
Thanks
 
D

Dirk Goldgar

Abe Katz said:
Hello All,
How can I check thru code, the status on a control, if the control is
visible or not? (i change it many times thru code)
Thanks


That should be as simple as

If Me.MyControl.Visible = True Then
' The control is visible
Else
' It isn't.
End If

Did you try that?
 
Top