'System.MissingMethodException'

  • Thread starter Thread starter Ricardo P
  • Start date Start date
R

Ricardo P

Hello,

I am getting this error 'System.MissingMethodException' in a random order
when openning the form.

This happens only in my customers site. What can i do to trap this bug ?

TIA

Ricardo
 
Ricardo,
You'll need to find out where the exception is coming from. Most likely,
you're importing something from a DLL that is not available on the customers
device.
 
Yes, this is most probably what is happening. One way to find out the dll
dependencies your program has is to run the depends tool present in
windows... just do a "depends exeName". Once you find the dlls your exe
depends on, then make sure all of them are present on the customer's device.

Also, a call stack could possibly give you the same information.

Thanks,
Sandy

This posting is provided "AS IS" with no warranties, and confers no rights.
 

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

Back
Top