Subform and Combo Box question

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

Guest

Hi! I'm hoping someone can help me even though they can't see my database.
I've got a base form with a combo box and a subform in it. The goal is to
have the choice from the combo box populate my subform through the query, but
it's not working. The subform just sits there and doesn't do anything. I'm
not sure what I'm missing, and this is my first go at it.
I started by developing a query, then a form, then sticking a subform in
that form. Someone please help or point me in the right direction! Maybe
there are some pages out on the net about how I can do this. Thanks!!!!!!
 
Have you tried requery on the subform after a selection is made from
the combo box?
 
buzzybee328 said:
Hi! I'm hoping someone can help me even though they can't see my database.
I've got a base form with a combo box and a subform in it. The goal is to
have the choice from the combo box populate my subform through the query, but
it's not working. The subform just sits there and doesn't do anything. I'm
not sure what I'm missing, and this is my first go at it.
I started by developing a query, then a form, then sticking a subform in
that form. Someone please help or point me in the right direction! Maybe
there are some pages out on the net about how I can do this. Thanks!!!!!!


Two excellent sites that I use all of the time are:

msvp.org/access

and

http://rogersaccesslibrary.com/TableOfContents3.asp


HTH

Steve
 
Hi! No, I haven't tried that. How do I do that? I'm ignorant when it comes
to combo boxes and subforms. I'm hoping to work through that. thanks!
 
In the AfterUpdate property of the combo box place this code:

Me!MySubform.Requery

Change MySubform to the name of your subform.
 

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

Back
Top