Conditional formatting on labels.

P

Paul

Hi there,

I am printing labels that have several small images on them as well as some
text. They are actually name badges for an event. I wish to be able to make
an image invisible on specific labels depending on the value of a Yes/No
control on that label. There are 5 images and 5 Yes/No controls. This means
that some labels will have all images visible, some will have none or any
combination in between.

I know I have seen this kind of conditional formatting somewhere as an
example but can't now find it.

Any suggestions?

Thanks

Paul
 
F

Fredg

If the images are in the Detail Section,
code the Detail Format event:
Image1.Visible = CheckBox1 = True
Image2.Visible = CheckBox2 = True
Etc.
 

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