Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Westi on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Hidding a only check box

Status
Not open for further replies.

dixxy

Technical User
Mar 4, 2003
220
CA
Hello,

I would like to know if there is a way to hide a check box on a report, if that check box is 'checked'?

I have a form that generates this report, and I would like to hide only the check boxes inside that record, not hide the hole record.

Is there a way of doing this?

Thanks,

Sylvain
 
In the On Format property (right click in detail
section and go to the On Format property)
of the detail section enter this code:

If me.YourCheckBox = True Then
me.YourCheckBox.Visible = False
Else
me.YourCheckBox.Visible = True
Endif

Hope this helps you.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top