Combo Requery problem

  • Thread starter Thread starter Charles
  • Start date Start date
C

Charles

Forms("frmmainform")("cbo1").Requery

I am trying to use that to requery a combo on another
open form. I get an error, how can I do this?

Thanks Charles
 
Try one of these:

Forms("frmmainform").Controls("cbo1").Requery

or

Forms("frmmainform")!cbo1.Requery
 

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