form doesn't show in code drop-down

M

mark kubicki

I have a form with several subforms

in code, when I type " me. ", I get a drop down with all of the controls on
the form -well actually, it seems, not all (some of the subforms show, 1 or
2 does not

the code I'm wanting to get to is simple...
me.sfrmFormNameGoes Here.requery

any idea what is going on?

thanks in advance,
mark
 
S

storrboy

I have a form with several subforms

in code, when I type " me. ", I get a drop down with all of the controls on
the form -well actually, it seems, not all (some of the subforms show, 1 or
2 does not

the code I'm wanting to get to is simple...
me.sfrmFormNameGoes Here.requery

any idea what is going on?

thanks in advance,
mark


The actual sub form name dosen't show, but the subform control usually
does.
I have seen where it sometimes does not, but it can still usually be
accessed.

me.sfrmSubFormControlNameGoesHere.Form.Requery
 
Top