MissingMethodException thrown when calling new form in Compact Framework

Posted by Boerema on Stack Overflow See other posts from Stack Overflow or by Boerema
Published on 2010-02-10T15:36:44Z Indexed on 2010/03/27 1:23 UTC
Read the original article Hit count: 398

I'm updating an old mobile device application for better flexibility. I had basically added the ability to configure the address of our SQL server in the case that we want to use our test server as opposed to our production server. I don't think this is causing the problem, but I wanted to state it. I also upgraded the project from a VS 2000 project to a VS 2005 project.

The issue I am having is that when I try to run the program in the VS emulator for Pocket PC, I get an error. It occurs after our "main menu" form loads and the user selects the next form to load. The form is initialized without issue, but when we try to run the .ShowDialog() method, it throws a System.MissingMethodException.

I don't have a lot of experience with the Compact Framework and really have no idea where to start looking for problems. I stepped the debugger through the entire initializing process for the new form and it ran without issue. But, again, when we come to the ShowDialog call, it throws the error.

Any ideas in where to start looking or known issues would be greatly appreciated.

© Stack Overflow or respective owner

Related posts about .net-compact-framework

Related posts about c#