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
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top