I am trying to format the check box in my report. I would like to remove the
border that is around the check box. Is there a way to do this?
Leslie
No. However you can work around it.
I assume what you want, if the check box is checked, is just the check
mark.
Use an unbound control instead of the check box control.
Set it's control source to:
=[CheckBoxField]
Set it's Format property to:
;\ü
(You can copy the above and paste it into the Format property)
Set it's BackStyle property to Transparent.
Set it's FontStyle to Wingding
Note: You can also size the font to make the check mark bigger or
smaller.
When you run the report, if the value of the field is True (checked)
you will get just the check mark.
What do you want if the value is False (unchecked)?
As of now, nothing will show.