Make a label Not visible

  • Thread starter Thread starter Bob Vance
  • Start date Start date
B

Bob Vance

My Label lblWarning can I have an On Click event that it will make my label
Invisible for good
 
My Label lblWarning can I have an On Click event that it will make my label
Invisible for good

Hi,

Usually you will need a table such a tblOptions to store various info
about app. Add a field bolLabelInvisible Yes/No and once when user
click the label to make it invisible, set the bolLabelInvisible =
False.

Use OnLoad event of the form:

If Dlookup("bolLabelInvisible", "tblOptions") = True Then
Me.LabelName.Visible = False
End If

Regards,
Branislav Mihaljev
Microsoft Access MVP
 

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

Similar Threads


Back
Top