System.MissingMethodException (help)

  • Thread starter Thread starter Tommy
  • Start date Start date
T

Tommy

I have a project for pocket pc that i have been working on. All has been
going well.

I added a few more forms to my project and designed them as I wanted. Now my
project won't run. I get System.MissingMethodException error and it doesnt
tell me where the problem is. I didn't add any more code or anything. Just a
few forms and laid them out.

Removing the new forms from my project doesn't fix the problem either.

Any ideas what happened and how I can recover my project?

Thanks.

Tommy
 
Tommy said:
I added a few more forms to my project and designed them as I wanted. Now my
project won't run. I get System.MissingMethodException error and it doesnt
tell me where the problem is. I didn't add any more code or anything. Just a
few forms and laid them out.

Probably you have some assembly that are not of the same
package/version, so the program was compiled with a class calling a
method that into PPC .dll does not exists.
 
I have similar problem. The difference is that if I run it on my PocketPC, it runs. But if I run it on tester's PocketPC, the same program issues MissingMethodException. I had another PocketPC with the same problem and when I deplyed the application, the exception went away. But for the tester, she moved the binary using ActiveSync. Is that the problem
What is the proper way to copy a binary from my build environment to the device without building a install package?
 
F5 deployment is the de facto way of deploying apps from dev machine to
device. This method will also check for the existence of the .NET
Compact Framework.

--
Neil Cowburn, MVP
Co-founder, OpenNETCF.org
Technologist, Content Master Ltd
Microsoft .NET Compact Framework MVP

www.opennetcf.org | www.contentmaster.com
 
Back
Top