windows-mobile

desktop to windows mobile communication

随声附和 提交于 2019-12-06 04:32:17
I want to make a desktop application trigger an event on a Windows Mobile 6 standard device (smartphone). How can I make the smartphone and desktop communicate? Where can I find some code examples of this? I'm using C#... To clarify: It will not be docked with USB. I would like to use WLAN. I want to trigger an event within my application that is already running on the smartphone. One solution is to use RAPI. If you do so, then have a look at RAPI communication library at OpenNETCF . This is a C# wrapper for the SDK functions. With RAPI you can do the following: Copy files from desktop to

Windows Mobile - 2 Way Call Recording (C#)

喜夏-厌秋 提交于 2019-12-06 04:23:58
I need to implement 2 way (caller and receiver) call recording on Windows Mobile. I have gone through many forums and articles saying that it's hardware limitation and is not possible on all phones. I have downloaded one application from http://www.resco.net/pocketpc/audiorecorder/ which is running perfect on my phone and has 2 way recording capability. Is there any possibility of implementing same using .NET CF 2.0 (managed or unmanaged. although, managed is prefered.). EDIT: I found this sample , but not able to give the length of recording dynamically. I need to start when the call is

how to show/hide SIP on Pocket PC

与世无争的帅哥 提交于 2019-12-06 01:07:42
I have the following problem: I open the dialog, open the SIP keyboard to fill the form and then minimize the SIP. Then when I close the current dialog and return to the main dialog the SIP keyboard appears again. Does anyone know how could I show/hide SIP keyboard programatically or better what could be done to solve the described problem. Once the user minimizes the keyboard it should not appear on the screen on dialog switching. Thanks! We use SHSipPreference to control the display of the SIP in our applications. I know it works with MFC and it sets the state of the SIP for the window so

Is there a way to target Windows Mobile 7.5 browser using conditional comments?

生来就可爱ヽ(ⅴ<●) 提交于 2019-12-06 01:04:16
问题 I'm trying to target the IE browser on Windows Mobile 7.5. Can anyone tell me if the <!--[if lt IE <mobile browser>]> <include retina display> <[end if]--> conditional comment syntax style works for targeting Windows Mobile? EDIT: Thanks to the comment below I was able to find a solution. The <!--[if IEMobile]> <[end if]--> syntax works for Windows mobile 7, but I couldn't get it to work for Windows mobile 7.5. Because I am building a mobile website that isn't required to present well on

Updates to .NET Compact Framework in 2010?

拟墨画扇 提交于 2019-12-05 22:54:12
问题 This question (.net Compact Framework 4.0) asked this back before the release of VS 2010. The answer basically said to wait for the release. Now that the release is here, does anyone know? Is there an upgrade/update to the .NETCF? something past .NETCF 3.5? Update: You can go here and vote to have Microsoft add this feature. LATER UPDATE: MS has more or less abandoned existing feature requests in Connect. Please go to the new User Voice site to vote for this feature. 回答1: It is no longer

Windows Mobile Application for barcode scanning with Emulator

天涯浪子 提交于 2019-12-05 21:14:41
i want to develop simple application for Motorolo MC 9190 G mobile it has inbuilt bar code scanner, i want to scan the bar code and display them in the msg box. i dont have the mobile so i have to test it in Emulator. when i deploy the code in emulator it gives null exception error. my code is i add sample.barcode dll Private barcodeReader As Symbol.Barcode.Reader // error occurs here itself barcodeReader = New Symbol.Barcode.Reader() barcodeReader.Actions.Enable() Dim nextReaderData As Symbol.Barcode.ReaderData = barcodeReader.GetNextReaderData() MessageBox.Show(nextReaderData.Text) i mm

Zip library options for the Compact Framework?

眉间皱痕 提交于 2019-12-05 19:03:42
问题 My requirements: Support .NET Compact Framework 2.0 and Windows Mobile 6.0 devices. Only need to unzip the contents to a directory on a storage card. Creation of zip files is not required. Must be able to use in corporate/commercial software. Can be open source, but not have GPL or other viral license. I've seen the Xceed Zip for CF library. What other options are there? 回答1: Have a look at #ziplib (www.icsharpcode.com). It's GPL, but you can use it in closed-source, commercial applications.

Programatically check which versions of .NET Compact Framework are installed

怎甘沉沦 提交于 2019-12-05 16:18:26
I have a Windows Mobile application that is built for .NET CF 1.0. It is written in C#. How can this program check what versions of the .NET Compact Framework are installed on the device it is running on? It really depends on what you mean by "installed". If they were installed via CAB file (the most common), there will be entries in the registry under HKEY_LOCAL_MACHINE\Software\Microsoft\.NETCompactFramework that you could programmatically check. 来源: https://stackoverflow.com/questions/5956122/programatically-check-which-versions-of-net-compact-framework-are-installed

Windows Mobile application in full-screen mode

落爺英雄遲暮 提交于 2019-12-05 14:36:42
I have a Windows Mobile application developed with Visual Studio 2008 and C# (Smart Device Project). When I run the application there's a start menu bar visible on the top and keyboard bar on the bottom. How can I make my application run in full-screen mode? If possible I would like to have a solution that will allow me to turn full-screen mode on and off on runtime (after clicking some form button for example). Getting rid of the keyboard/menu bar at the bottom is easy: just remove the MainMenu control from each of your forms. Getting rid of the start menu (aka task bar) at the top of the

Why does VS2010 always break on exception from MethodInfo.Invoke?

一个人想着一个人 提交于 2019-12-05 08:54:54
I have a try/catch around a MethodInfo.Invoke(o,null), and VS2010 is set to never break on Exceptions, but unfortunately the debugger continues to break inside the Invoked method. The method is static, and I've got the Phone Developer Beta installed. Is this a bug or developer error? Thx!! exsulto Yes, with every exception check-box is un-checked it breaks on only these Invoke exceptions. All the other exceptions work fine. The great news is that an anonymous genius gave me a work-around: delegate void VoidTest(); VoidTest test = (VoidTest)Delegate.CreateDelegate(typeof(VoidTest), o, method