Questions tagged [windows-mobile-5.0]

Windows Mobile 5 was Microsoft's latest operating system for handheld devices in 2005, which replaced Windows Mobile 2003. One of the broadest features WM5 introduced was a unified underlying platform between the three kinds of devices it supported: Microsoft Smartphones, Pocket PCs, and Pocket PC Phones.

Windows Mobile 5.0, originally codenamed "Magneto", was released at Microsoft's Mobile and Embedded Developers Conference 2005 in Las Vegas, May 9–12, 2005. Microsoft offered mainstream support for Windows Mobile 5 through October 12, 2010, and extended support through October 13, 2015. It was first offered on the Dell Axim x51. It used the .NET Compact Framework 1.0 SP3, an environment for programs based on .NET. Windows Mobile 5.0 included Microsoft Exchange Server "push" functionality improvements that worked with Exchange 2003 SP2.[3] The "push" functionality also required vendor/device support. With AKU2 software upgrades all WM 5.0 devices supported DirectPush. This version featured increased battery life due to Persistent storage capability. Previously up to 50% (enough for 72 hours of storage) of battery power was reserved just to maintain data in volatile RAM.

115 questions
2
votes
1 answer

Set the System Sleep/standby timeout programmatically

I need to set the sleep/standby timeout programmatically for my device. (ie when it sits idle for a while it turns off.) It defaults to 120 and I have a tool that let me change it, but I want to change it via my program (dynamically). Any ideas on…
Vaccano
  • 78,325
  • 149
  • 468
  • 850
2
votes
1 answer

How to install / access .cer file in Windows mobile 5.0 Pocket PC device?

I want to access the information (like issuer name, expiry date, etc) from .cer file . I tried checking if the certificate is present in the store (it will not be present anyways since I didn't install the certificate) X509Store store = new…
Aishwaryameenakshi
  • 189
  • 1
  • 1
  • 9
2
votes
2 answers

Submit FORM on ENTER key pressed

OS: Windows Mobile 5 / Compact .NET Framework (Form.AcceptButton() NOT available) I am showing a modal form with ShowDialog(). I want to be able to submit the modal form on hitting the ENTER key. I am able to grab the KEYDOWN EVENT when ENTER key…
LPP
  • 77
  • 2
  • 12
2
votes
1 answer

Retrieve Storage and Programs Memory on .NET Compact Framework 2 and WM5

I've been looking for quite a while already and still couldn't find a solution for this. All I need is to retrieve the memory levels and percentage of use. OpenNETCF has a MemoryManagement class, which seems to encapsulates a data structure returned…
wintermute
  • 433
  • 2
  • 12
2
votes
2 answers

Netbeans, mobile development and screen size

I'm looking at prototyping with a HTC Advantage, which runs Windows Mobile 5 and has a screen resolution of 640x480 (or the other way if in portrait). Before anyone jumps in and suggests developing as a native Windows mobile app, we're prototyping…
Chris J
  • 30,688
  • 6
  • 69
  • 111
2
votes
1 answer

Can I Sync Pocket Access on Windows 7?

I have to sync a Pocket Access database with Access on the PC. WMDC won't let me do that and ActiveSync won't run on Vista so I can't do it. Works great on XP. Windows 7 has an XP mode. It runs XP in a virtual machine or something like…
2
votes
2 answers

How to ActiveSync Windows Mobile 6 to windows 8

I have some devices with Windows CE 5, CE 6, Windows Mobile 6.1 and 6.5. Synchronizing with ActiveSycn 4.5 on XP and Windows 7 I have no problems. Now I'm facing the new Windows 8 and I cannot connect. Does anyone know how to connect?
2
votes
2 answers

how to get the thumbnail of picture in windows mobile application

I am delveloping a small application in VB.NET, where I need to load an image from the phone into a picture box. I am not able to add the picture into picturebox, though. It throws an OutOfMemoryException. I am wondering if there is any way to…
Rizz
  • 41
  • 2
2
votes
0 answers

C# How do you lock columns in a DataGrid on Windows Mobile 5.0?

I am trying to freeze columns in a DataGrid in C#. By freezing I mean making the column always visible even when horizontal or vertical scrolling occurs(as in Excel). My target platform is Windows Mobile 5.0 with 2.0 .Net Framework. Is there any…
Mark
2
votes
1 answer

IOutofmemory error with bitmap. windows mobile app

I am developing a simple code to get the image from filedialog and i want it to be displayed in picturebox. but i get error "outofmemory" with few images. here is my code Dim srcmap As Bitmap srcmap = New Bitmap(OpenFileDialog1.FileName) Dim destbit…
Rizz
  • 41
  • 2
1
vote
1 answer

Develop for Windows CE5.0 or Windows Mobile 5.0?

If you are a C# developer that uses Visual Studio 2010 Premium Edition and you need to write software for a device where you have option of choosing between: Windows CE5.0 or Windows Mobile 5.0 operating systems - which one would you opt…
aron
  • 2,856
  • 11
  • 49
  • 79
1
vote
1 answer

Toolbox controls not active in VS2008

i install Visual studio 2008 and install windows mobile 5.0 pocket pc SDK to create my own app and deploy it but when i create new project the toolbox controls are not active i don't what is the problem can any one help me???
Yasmeen
  • 10,991
  • 5
  • 16
  • 15
1
vote
0 answers

RSA encryption on win mobile 6.5 (using .key file) (c++)

I am writing an application for Windows Mobile 6.5 with RSA encryption. I would like to use public.key file to encrypt data. What tools should I use to do that? I can't find iformation about working with .key files on cpp in standart libs like…
1
vote
2 answers

Windows Mobile - Disable Power Button

Has anyone successfully trapped the power/standby button on a WM5 device such that your code prevented users "switching off" even the screen? I have an application that uses the screen in a landscape orientation and I'd like to trap the power key…
1
vote
1 answer

Movable pictures on a map using .net compact framework 2.0 mobile device 5.0

We need to find a way to create a movable (at run time) picture on a map overlay using the .net compact framework 2.0 on 5.0 mobile device. The only choice we have seen so far is flash however given the hardware's limitations, I was thinking it…