Access 2003 Reports

  • Thread starter Thread starter Guest
  • Start date Start date
AccessInfant said:
How could I display a graphic image depending on a yes/no field value in a
report?

In the Format event of the whatever report section contains the image
control, set the image control's Visible property based on the value of the
yes/no field:

Me.imgControl.Visible = Me.chkYesNo

(to make the image visible if the checkbox is checked).

Carl Rapson
 
Back
Top