What does "Runtime error '2465'" mean?

G

Guest

I have a subform in that is producing the follwoing message when I open our
regular form.
"Run-time error '2465':
Microsoft Access cannot find the field "l" refferred to in your expression.

When I run the debugger it takes me to the following code line in Microsoft
Visual:
"[Form_frmpeople and places].Recalc"
What should I do to fix this and what is causing the problem?
 
R

RoyVidar

Accesscontroller said:
I have a subform in that is producing the follwoing message when I
open our regular form.
"Run-time error '2465':
Microsoft Access cannot find the field "l" refferred to in your
expression.

When I run the debugger it takes me to the following code line in
Microsoft Visual:
"[Form_frmpeople and places].Recalc"
What should I do to fix this and what is causing the problem?

If you're recalculating the current form, try

me.recalc

If it's another form, try using the forms collection

forms("frmNameOfForm").recalc
 

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


Top