Same app acts differently on another PC

  • Thread starter Thread starter alekm
  • Start date Start date
A

alekm

I've got an app (client and DB parts separated) that works good on two client
PCs but on any other PC I'm getting message: Error 2501 The OpenForm action
was canceled.
What should I do?

alek_mil
 
On Fri, 26 Mar 2010 05:05:01 -0700, alekm

FIrst thing I would check is if all references are found. Code window
Tools > References

-Tom.
Microsoft Access MVP
 
When one computer acts differently than the others, the first thing that I
check are the references. Do a Ctrl + g keyboard combination to bring up the
VBA window. Next go to Tools, References and see if any on the top of the
list say Missing or something. If not, compare a working computer with the
problem one to make sure that they have the same references.

Once you are sure that the references are working and while still in the VBA
window, go to Debug, Compile. If it isn't grayed out, complie the code and
see if any errors show.

If that doesn't work, see if you can isolate when it happens and what code
is running. Troubleshoot from there.
 
Back
Top