'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.
 
Back
Top