windows-mobile-6.5

Problems using ImageHelper to resize images on OpenNetCF with HTC T3333

两盒软妹~` 提交于 2019-12-08 13:40:51
问题 I use the class ImageHelper who was quoted in the article of Chris Tacke to resize large images on Compact Framework, using OpenNetCF.Drawing namespace. In many devices that have Windows Mobile 6.5 version Embebbed the class worked perfectly. However in some devices with the Windows Mobile version 6.1 (robust Honeywell equipment) and HTC T3333 (Touch2) throws an exception "0x887b0005". Is there any limitation on the use of this device? There is an alternative to solve this problem? 回答1:

What is the use for a Mutex if you can't name it?

蹲街弑〆低调 提交于 2019-12-07 03:30:47
问题 I am having a hard time figuring out what good a mutex is without naming it. Specifically I want to make my Windows Mobile 6.5 app single-instance. There are a few questions and answers on this site about how to do that - and the best ones seem to use named mutexes. Unfortunately the CTORS for mutexes in compact framework do not take a string - one can only create a mutex. Now, what good is a mutex if it has no associated ID? Am I missing something? How do I use a mutex to protect a resource

Disable menu bar in Windows Mobile 6.5

天涯浪子 提交于 2019-12-05 08:53:35
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. User can tap on the title bar (menu bar, caption bar - I'm not sure what is proper name for it - the bar

How to increase size of sip qwerty keyboard on windows mobile 6.53? (VC++)

旧巷老猫 提交于 2019-12-05 07:35:24
问题 In an input text field, the user taps at the Soft Input Panel keyboard to bring it up. Unfortunately, the keys are so tiny! Is there a way from VC++ (VS2008) to resize it so the buttons are larger? I dont know how people use it - the keys are so tiny, that even with a stylus, one ends up typing the wrong keys. I could not figure out how to increase the size of the SIP panel from the default 80 pixels to something larger. I found this SIP sample but it does not set the size C:\Program Files

Is there a JAVA FX 2.0+ runtime for windows mobile

狂风中的少年 提交于 2019-12-02 08:10:59
问题 The newest version of the JavaFX runtime that I could find is the 1.3 Early Access. The JavaFX 2.2 SDK does not have a mobile profile. Does this mean that Java FX on mobile has been killed off before it ever got out of Early Access ? 回答1: AFAIK, the mobile profile is planned for a future release. AFAIK it hasn't been communicated yet, which platforms Oracle will support. 回答2: Today JavaFX 2+ is targeted at desktop/notebook OSes only - no official word (yet) on mobile support. The closest

Is there a JAVA FX 2.0+ runtime for windows mobile

天大地大妈咪最大 提交于 2019-12-02 06:12:21
The newest version of the JavaFX runtime that I could find is the 1.3 Early Access. The JavaFX 2.2 SDK does not have a mobile profile. Does this mean that Java FX on mobile has been killed off before it ever got out of Early Access ? AFAIK, the mobile profile is planned for a future release. AFAIK it hasn't been communicated yet, which platforms Oracle will support. Today JavaFX 2+ is targeted at desktop/notebook OSes only - no official word (yet) on mobile support. The closest mobile experience you could get is probably running JavaFX 2+ on a Windows 7 tablet . For JavaFX roadmap information:

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

∥☆過路亽.° 提交于 2019-12-02 01:13:41
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. Note - it is not the soft keyboard - but the image that the user clicks that will bring that up. Note -

Windows Mobile 6.5 Professional

我怕爱的太早我们不能终老 提交于 2019-11-29 17:22:50
I have a problem with windows mobile 6.5 professional. Developed an application that runs on windows mobile 6.5 classic, opening a website from webbrowser. In Professional website works correctly in IE, but not working javascript / jquery in my application with webbrowser. I found it strange the contents of the request agent (Request.UserAgent) from the Professional: Mozilla/4.0 (compatible, MSIE 6.0, Windows CE; IEMobile 7:11) When the Classic appears the following result: Mozilla/4.0 (compatible, MSIE 6.0, Windows NT 5.1, Windows Phone 6.5.3.5 I recently stumbled upon the same issue.

How to connect a C# Windows mobile 6.5 app to a Postgres database?

只谈情不闲聊 提交于 2019-11-29 17:19:40
I'm developing an application for Windows Mobile 6.5 that needs to get and send data from a Postgres database within the network of the app. I've googled it and read every page on the matter but haven't been able to find a solution. The npgsql driver doesn't work on this sdk. Much like for Android or iOS, I'd recommend that you build an intermediary web service that's provided by a server on the Internet that the phones talk to instead of talking directly to the database. The web service would accept REST+JSON, REST+XML, XML-RPC, SOAP, or whatever your preferred web service procotol is from

How to connect a C# Windows mobile 6.5 app to a Postgres database?

*爱你&永不变心* 提交于 2019-11-28 11:57:37
问题 I'm developing an application for Windows Mobile 6.5 that needs to get and send data from a Postgres database within the network of the app. I've googled it and read every page on the matter but haven't been able to find a solution. The npgsql driver doesn't work on this sdk. 回答1: Much like for Android or iOS, I'd recommend that you build an intermediary web service that's provided by a server on the Internet that the phones talk to instead of talking directly to the database. The web service