command button-visable

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

Guest

I would like to click a command button and make an object visable.
Can you guide me on how to do this?
Thanks
Chey
 
I would like to click a command button
and make an object visable. Can you
guide me on how to do this?

What kind of "object" -- that is a very vague term. You'll need to clarify
what you are asking.

Larry Linson
Microsoft Access MVP
 
Okay I have a label named Label22. When I click label22 I want the label22,
image9, and box20 to not be visable. But when I close and open if back up I
want it to be visable.
 
Private Sub Label22_Click()
Me.Label22.Visible = False
Me.Image9.Visible = False
Me.Box20.Visible = False
End Sub
 

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

visable 3
Visable 12
Between 11
visable 1
MAking things visable 1
Vba help: Cmd Button that filters on a fixed text value... 1
2165 2
Combo Box Relation 1

Back
Top