> 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?

Signature
Dirk Goldgar, MS Access MVP
www.datagnostics.com
(please reply to the newsgroup)