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
 
Back
Top