What does "Runtime error '2465'" mean?

  • Thread starter Thread starter Guest
  • Start date Start date
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?
 
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
 
Back
Top