List Box to show label

B

Bob Vance

In the after update trying to write if Column 3 has any data it will make
this label visible
If Column 3 has any data Me.lblEmail.Visible
 
J

Jeanette Cunningham

Hi Bob,
to make the label visible, you need to set its visible property to true.
The code you posted stops short of setting the visible property to true.
Try it like this:
Me.lblEmail.Visible = True


Jeanette Cunningham MS Access MVP -- Melbourne Victoria Australia
 
Top