Have a Report Image Show or Not

  • Thread starter Thread starter mjones
  • Start date Start date
M

mjones

Hi Again,

I'd like to make an image (an embedded picture type) on a report not
show if a value in the table (which is a check box on the form) isn’t
checked. The fieldname is BringPMBOK and it is a data type Yes/No in
the tConf table.

Any ideas would be really appreciated.

Thanks!

Michele
 
Make an "on format" event for the detail section in your report.

The code for the event is something like:

If me.BringPMBOK then
me.PictureFieldName.Visible = True
Else
me.PictureFieldName.Visible = False
Endif

(I did not test this)


Peter
http://access.xps350.com/
 
Make an "on format" event for the detail section in your report.

The code for the event is something like:

If me.BringPMBOK then
   me.PictureFieldName.Visible = True
Else
   me.PictureFieldName.Visible = False
Endif

(I did not test this)

Peterhttp://access.xps350.com/

Brilliant. Works perfectly. Thanks so much.
 

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

Back
Top