Questions tagged [windows-mobile-6.5]

Windows mobile 6.5 is an operating system for PDAs and smartphones developed by Microsoft.

389 questions
2
votes
1 answer

Motorola MC75A RFID cannot find rfidapi32.dll

I am trying to run one of the SDK RFID samples on a Motorola MC75A (windows), but I am getting the following error - can anyone help? thanks
okenshield
  • 566
  • 8
  • 23
2
votes
1 answer

Disable and then re-enable Symbol Barcode Scanner

Ok...so this seems like it should be a super simple - I need to disable a symbol barcode scanner, do some work and then re-enable the scanner. I have a scanner class which works fine so I tried the below code in my item look-up class private…
2
votes
1 answer

.NET integration with Honeywell D6X00 Platform SDK ( for Personal digital assistant - Dolphin 6500 Mobile Computer application development )

I am planning to develop a bar code scanning application for Dolphin 6500 Mobile Computer using Honeywell D6X00 Platform SDK. I have no idea, that how to develop app using Honeywell D6X00 Platform SDK in .NET After googling i known to use Visual C#…
pg90
  • 423
  • 2
  • 6
  • 16
2
votes
2 answers

Accessing Motorola MC9500 motion sensor programmatically?

I am currently working on a windows mobile application for Motorola MC9500 which has Windows Mobile 6.5. I have tried Symbol's EMDK library to access inbuilt motion sensor of the device without any luck. The EMDK for .NET v2.7 has Symbol.Sensor…
2
votes
1 answer

Windows Mobile emulator network connection on Windows 7 64bit

I have been trying for many hours but I can't connect my Windows Mobile 6.5 emulator to the Internet. I have Windows Mobile Device Center driver update for 64 bit systems and also Windows Mobile emulator version for 64 bit systems. I have a NC2000…
marcin93w
  • 402
  • 6
  • 13
2
votes
2 answers

Failure to deploy application to mobile device

I got the following error message from Visual Studio at deploy stage to the mobile device: An operation was attempted on something that is not a socket The only solution that worked was removing entire application folder from the Program Files on…
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 use camera in windows mobile 6 application

I am creating windows mobile 6.5 application . In that application i have to use camera operations like picture and video. There is a form which contains two buttons one for picture and other for video. If user click picture button then camera…
Attri
  • 217
  • 5
  • 14
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
2
votes
1 answer

VS 2012 Support for Windows mobile 6

I've read here that Microsoft will add support for Windows CE in visual studio 2012, but I haven't seen this project template in VS 2012. My question: is there going to be support for Windows CE 5 (more specifically Windows Mobile 6) or not ? and…
Jonny
  • 2,787
  • 10
  • 40
  • 62
2
votes
1 answer

Perform action after form is shown.

I am developing a windows mobile application, and I want to do something after a form (a loading screen) is displayed to the user. normally, I have a Form.Shown event, but with the .net compact framework v3.5, I can't find this event. Does…
2
votes
1 answer

.NET CF WebService ObjectDisposedException

I am trying to solve an issue with one of my Smart Device projects (.NET CF 3.5 on Windows Mobile 6.5 Device). The code tries to make webservice calls continuously to get some data and use it in the form. During the usage, for a particular case is…
2
votes
2 answers

Windows Mobile 6.5 - TypeLoadException on Process.Start()

In the solution I have several .exe files that sit in the same directory. One of them is a Master Menu, which looks up all the other executables' path (within the same dir) and assigns to buttons in the form. When the button is clicked it's…
2
votes
1 answer

Security in Windows Registry

Can any program write to any part of the Windows registry? Are there permissions and mechanisms to prevent that happening? If I have a program that writes a key-value to the registry, can I disallow any other program from modifying the key-value? I…
likejudo
  • 3,396
  • 6
  • 52
  • 107
1
vote
2 answers

Low memory notifications in Windows CE

Is there a way to get notifications when the available memory goes below a certain limit (user configurable)? I have looked into the WM_HIBERNATE event but it seems the limit for this event is not user configurable and is hard-coded (160KB??). The…