Visible

accessman2

Registered User.
Local time
Yesterday, 19:08
Joined
Sep 15, 2005
Messages
335
In report,

can we setup the object to be visible/invisble in the open event?

Because I want to setup visible/invisble of the certain object depend on the other field value.

Please let me know.
Thanks.
 
I guess this must be possible, try something like this in the on-open event :

If Me.yourobject.Visible = True Then
Me.yourobject.Visible = False
Else
Me.yourobject.Visible = True
End If

Hth
 

Users who are viewing this thread

Back
Top Bottom