VS.Net 2003 and CF SP3

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hardware : Symbol PPT 8800 running CE .NET 4.1

I have a written an application for the above mentioned device and have
noticed that some of the problems I was experiencing have been resolved in
SP3. When I install SP3 onto the device my application will no longer run, I
am getting

Could not load type System.Windows.Forms.DialogResult from assembly
System.Windows.Forms, Version=1.0.5000.0, Culture=neutral,
PublicKeyToken=B77A5C561934E089.

When I try to debug the app, i get various exceptions being thrown from
Typeload to XMLDocument. These exceptions are thrown as soon as the app is
launched, which does help me to determine what is raising them.

Any ideas?
 
Framework assemblies with PublicKeyToken which starts with "B77" refer
to Full Framework. Compact Framework assemblies start with "969". That
is why make sure that your application (or your application's
assemblies) has correct references.

Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
 
Sergey, thanks for that. Now works a treat.

Sergey Bogdanov said:
Framework assemblies with PublicKeyToken which starts with "B77" refer
to Full Framework. Compact Framework assemblies start with "969". That
is why make sure that your application (or your application's
assemblies) has correct references.

Best regards,
Sergey Bogdanov
http://www.sergeybogdanov.com
 
Back
Top