sounds like you defined something as string but used is as integer.
or tried to assign it as an object....
something like that.
try hitting CTL-break after the message, and see if it shows you.
No it does not show me. It just closes the error message. I never changed any code. I just used the external data to copy the files over and then it did not work anymore.
these are the hardest to find.
somewhere in form load, or oncurrent, it is assinging something
check all the declarations and make sure they are the correct data types.
If you carefully read the error description it is saying that the name of the command button clicked does not match the name of the event procedure it is connected to.
For example, if the command button is named 'Next', the expected event procedure is named 'Next_Click()'.
One possibility is that although you moved your forms, queries etc to another database, you forgot to move a code module.
In the forms that are generating the errors, what are the settings for the On-Click event property? Do they refer to a function? If they do, did you transfer the code for the function to the new database?
Good advice from all. I will look into these suggestion and get back to you all.