Web Access Question.

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
in the current event of your form do the following code:

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