Acc2002 Check status of a control

  • Thread starter Thread starter Abe Katz
  • Start date Start date
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
 
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?
 
Back
Top