Queries deliver data for subsequent querie on same form

D

Danny

I want to select values from a combo box which gets populated from a
querie. The selected data item from the combo box must be an input to
another querie which populates subsequent text boxes on the same form.

I cant get this to work, can it work?
Thank you.
 
P

Pieter Wijnen

Avoid using DoCmd when possible!

Me.Requery (in code)
Me.dirty = False (instead of DoCmd.SaveRecord) to name a few

As this gives you the oppurtinity for error handling

Pieter
 
G

Guest

In the second query do you have the criteria set on the proper column to the
control of the form? Is the combo box unbound? Can you please give some
more details.
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

Top