visable

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

Guest

I have 5 subforms on a for. When I the correspoding button I would like that
form to become visable. when I click another button I would like that for to
be visable and the other one to not be. I only want one form to be visable
at a time. However I would like to designate one of the subforms to be the
first for you see when you open it up.
Thanks
Chey
 
On the form, set the visible property to true for the subform you want
defaulted on and false for all the others. That will take care of what you
see when you open.

When you click on the button set the selected subform's visible property to
true and all others to false thru code. Something like...

Forms![FormName]![SubformName].visible = true
 
I am a little confused on the second part.
This is what I put
Private Sub Label8_Click()
Forms![After Travel]![Cash Only].Visible = True
End Sub
When I click on it nothing happens. How do I make by defaulted form
disappear?
 
oh it does work, I just want that one to be visable and my defaulted one to
go away.
Thanks
 

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

command button-visable 3
Display subform total 1
Subform display issue 2
MAking things visable 1
Combo Box Relation 1
Access 2007 to 2003 2
Opening Subforms in Design View 3
Between 11

Back
Top