Web Access Question.

N

Nathan

I would like to display a graphic based on the value in a field. If field is
X, display X graphic, Y, display Y graphic. How would I go about doing this?
I've got the form done and the query is working well, but I don't know much
beyond that.
 
W

Warrio

in the current event of your form do the following code:

xGraphic.Visible = (myField = "x")
yGraphic.Visible = (myField = "y")
 

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