Menu
  • HOME
  • TAGS

Why is my CE app refusing to run?

deployment,compact-framework,windows-ce,smart-device,handhelddevice

If an application does not start it is mostly missing something. As you compiled for WindowsCE and CF3.5, the Compact Framework 3.5 runimes have to be installed on the WindowsCE device. Normally Compact Framework is part of Windows CE images, at least version 1.0, but who knows for your test...

What should Connection Settings in Windows Mobile Device Center/Active Stync be when connecting to a handheld device?

usb,motorola,activesync,handheld,handhelddevice

For me, anyway, this is how the settings need to look: Note that the "Allow data connections on device when connected to PC" tickbox is not even visible...?!?...

How can I send an email from a Windows CE device (Compact Framework)?

c#,compact-framework,windows-ce,email-integration,handhelddevice

One way would to use the SDF and the OpenNETCF.Net.Mail namespace objects. It works like the System.Net.Mail objects, so sending an email would look something like this: var message = new MailMessage(); message.From = new MailAddress("[email protected]"); message.To.Add(new MailAddress("[email protected]")); message.Subject = "Hello World"; message.Body = "This is my message body"; var...

Which cab should I deploy to my handheld device to install CF version 2?

arm,compact-framework,windows-ce,motorola,handhelddevice

Assuming your are using the WinCE 4.2 version of the 3090 (it comes in 4.2 and 5.0), you should proceed with the install using NETCFv2.wce4.ARMV4.cab. "The program is not compatible..." message is a warning only, and not a very smart one. There is even a way to edit the cab...