Checkboxes don't print in Report

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

Guest

I have a report with checkboxes.
They are visible in the report and when I print preview, but disappear when
I actually print the report. It doesn't show either a checked or un-checked
box.

Does this have something to do with font selection or something?

Thanks for the help.

MikeZz
 
Mike:

A check box is a graphic element (i.e. its a bit map rather than a font)
within an Access report. There's a couple of things to try. 1.) Try
changing the dpi setting for your printer and see if increasing that has any
impact. 2.) If you are using a post script driver with your printer, you
may want to experiment with changing some of the base post script options of
the driver and the way it handles bit maps. 3.) If none of that works, you
may simply end up needing to change the check box field to a Yes/No output
representation on your report. (e.g. IIF(MyField = 0, "No", "Yes).

HTH
 
Back
Top