how to disable checkbox in printing

S

survivor

hello. i have a few checkbox, some were selected and some are not, but during
printing is it possible not to print those not selected checkbox, thanks
 
O

Ofer Cohen

I assume you are talking about a report,
if that the case, you can use the OnPrint event of the section where the
check boxes located to set the visible property

Me.[CheckBoxName].Visible = Nz(Me.[CheckBoxName],False)
 
S

survivor

dear sir/madam

many thanks for your help, it was great and very useful


Ofer Cohen said:
I assume you are talking about a report,
if that the case, you can use the OnPrint event of the section where the
check boxes located to set the visible property

Me.[CheckBoxName].Visible = Nz(Me.[CheckBoxName],False)

--
Good Luck
BS"D


survivor said:
hello. i have a few checkbox, some were selected and some are not, but during
printing is it possible not to print those not selected checkbox, thanks
 
Top