G
Guest
When printing a yes/no data type field on a report, if the field value is Yes
print a graphic instead of the check box.
print a graphic instead of the check box.
When printing a yes/no data type field on a report, if the field value is Yes
print a graphic instead of the check box.
fredg said:When printing a yes/no data type field on a report, if the field value is Yes
print a graphic instead of the check box.
Do you want to show the check box if the value is No?
You can place the graphic in the report where you want it to print,
then code the Detail Section's Format event:
ImageName.Visible = [CheckBoxField] = -1
[CheckBoxField].Visible = [CheckBoxField] = 0