how to disable checkbox in printing

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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
 
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)
 
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
 
Back
Top