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?
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top