windows-mobile-6.5

Create a Taskbar Icon in Windows Mobile 6.5?

南笙酒味 提交于 2020-01-16 11:51:31
问题 Hi All, I have a requirement to build an app for windows mobile 6.5, which will display an icon in the taskbar (at the top to the left of the volume,clock and wireless icons) and respond to an onclick event. I have found references describing how to display icons in the system tray, but that does meet the requirement. Does anyone know how to achieve this ? Thanks in advance. Damien. 回答1: You need to use the notification API. The taskbar is able to hold user notifications. Here is a compact

Create a Taskbar Icon in Windows Mobile 6.5?

ε祈祈猫儿з 提交于 2020-01-16 11:50:02
问题 Hi All, I have a requirement to build an app for windows mobile 6.5, which will display an icon in the taskbar (at the top to the left of the volume,clock and wireless icons) and respond to an onclick event. I have found references describing how to display icons in the system tray, but that does meet the requirement. Does anyone know how to achieve this ? Thanks in advance. Damien. 回答1: You need to use the notification API. The taskbar is able to hold user notifications. Here is a compact

How can I hide the little keyboard popup in Windows Mobile 6.5? (c#)

不打扰是莪最后的温柔 提交于 2019-12-31 03:12:30
问题 I have an app that is essentially a wizard that goes through some dialog boxes. One of the forms has just a button on it that brings up the common "take picture" dialog. After that picture functionality is dismissed the little keyboard icon shows up (inconveniently covering over one of my wizard buttons). I tried setting the covered window to the fron by calling: nextButton.BringToFront(); But that has no effect. I need to disable the little keyboard icon somehow and not sure how to do it.

Disable Clock App in Windows 6.5

删除回忆录丶 提交于 2019-12-13 04:59:59
问题 Disable Clock App on Windows 6.5 this code run normally in windows 6 .. but didn't work in windows 6.5 PDA (Intermic CN51) System.Byte[] offValue = new byte[1]; offValue[0] = 0x30; Microsoft.Win32.RegistryKey registryKey = Microsoft.Win32.Registry.LocalMachine.OpenSubKey(@"\Software\Microsoft\Clock\", true); registryKey.SetValue("AppState", offValue); registryKey.Close(); the (Appstate) registry-key already fired with 30 value .. but nothing changed in Clock App .. i tried change value but

Disable menu bar in Windows Mobile 6.5

久未见 提交于 2019-12-12 09:39:37
问题 I'm porting .NET application from WM5 to WM6.5. Besides new resolution I noticed different UI behavior for start menu and title bar (caption bar). My application needs to work in kind of kiosk mode where user can't exit application and bypass our authentication. For this purpose on WM5 I was hiding start button and close button. I am using following function: SHFullScreen(hWnd, SHFS_HIDESTARTICON | SHFS_HIDESIPBUTTON); Hiding buttons kind of works on WM6.5 too, but there is another problem.

Unable to access database (SQL Server CE / Windows Mobile 6.5)

对着背影说爱祢 提交于 2019-12-12 04:25:21
问题 I'm creating an application for a Windows Mobile 6.5 device, part of which is supposed to replicate a SQL database when the device plugged in, to have a local copy when unplugged (because no connection). So, to have a local database I followed the "Northwind" tutorial for SQL Server CE (with my own test database), but constantly run into the issue that the device can't connect to the database. I can't debug (because I have to transfer the program to the device to test it every time) but I get

Windows Mobile: Internet on the device via code

十年热恋 提交于 2019-12-12 02:08:47
问题 I have a device on Windows Mobile. The device have an access to the internet via WI-FI. I've tried to make a code to get response via Internet with WebHttpRequest and WebHttResponse. string url = "http://172.20.24.83:80/ProductRESTService.svc/GetProductList/"; HttpWebRequest req = (HttpWebRequest)WebRequest.Create(url); req.Method = "GET"; req.ContentType = "application/xml; charset=utf-8"; req.Timeout = 300000000; req.Headers.Add("SOAPAction", url); HttpWebResponse response =

Deploy a Visual Studio application in a recently installed emulator

房东的猫 提交于 2019-12-11 08:26:17
问题 I'm trying to deploy an Visual Studio 2008 application in an emulator. I've downloaded the Windows Mobile 6.5.3 Professional DTK from this page, which comes with some emulators. The Emulator Manager from Visual Studio recognize them, but not at the moment of the deploy an application, when I try to deploy mi solution it appears a pop-up with the different versions of emulators, but the ones from 6.5.3 DTK don't appear to select. How can I configure Visual Studio to be able to select this new

Keytool error importing SSL certificate into J9 keystore

别等时光非礼了梦想. 提交于 2019-12-11 04:19:59
问题 We trying to import main certificate into keystore caserts J9 mobile VM. The exception: keytool error: java.security.NoSuchAlgorithmException: 1.2.840.113549.1.1.11 Certificates algorithm is sha2-256 with 2048 bit key (or 4096 bit in production environment). We can't change private certificate. The only VM we can run Maximo Mobile on Windows Mobile 6.5 is J9. We tried J9 2.2 and J9 2.4. We have 300 expensive Win Mobile devices bought by our client and we stuck. Please help us. More Info Specs

Fastest way to delete the first few bytes of a file

左心房为你撑大大i 提交于 2019-12-11 01:02:05
问题 I am using a windows mobile compact edition 6.5 phone and am writing out binary data to a file from bluetooth. These files get quite large, 16M+ and what I need to do is to once the file is written then I need to search the file for a start character and then delete everything before, thus eliminating garbage. I cannot do this inline when the data comes in due to graphing issues and speed as I get alot of data coming in and there is already too many if conditions on the incoming data. I