From: Abe Katz on
Hello All,
How can I check thru code, if a control on the form is visible or it's
hidden?

Thanks in advance
Abe


From: John W. Vinson on
On Thu, 4 Mar 2010 16:37:21 -0500, "Abe Katz" <abekatz(a)mindspring.com> wrote:

>Hello All,
>How can I check thru code, if a control on the form is visible or it's
>hidden?
>
>Thanks in advance
>Abe
>

If Forms!yourformname!controlname.Visible = True Then
<it's visible>
Else
<it's hidden>
End If

You can use Me!controlname if the code is on the same form as the control.
--

John W. Vinson [MVP]
From: Linq Adams via AccessMonster.com on
Private Sub Command2_Click()

If ControlName.Visible = True Then
MsgBox "Visible"
Else
MsgBox "Not Visible"
End If

End Sub

You can, of course, replace the message boxes with other code, as appropriate.


--
There's ALWAYS more than one way to skin a cat!

Answers/posts based on Access 2000/2003

Message posted via AccessMonster.com
http://www.accessmonster.com/Uwe/Forums.aspx/access-forms/201003/1