checkbox print

R

ray

How can I make only the checkboxes that have been checked
show up on a printout of a form.
 
D

Duane Hookom

You could use code in the On Format event of the section containing the
check boxes:
Me.chkCheckA.Visible = Me.chkCheckA = True
 
K

kimc

I have the same question, but I want to know how I can have the selected checkboxes only print out on a report. For example, the name of one of my checkboxes is cardiovascular.

Thanks!
 
Top