Access 2003 Reports

A

AccessInfant

How could I display a graphic image depending on a yes/no field value in a
report?
 
C

Carl Rapson

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
 
Top