windows-ce

Remote desktop TO Windows CE … over USB? [closed]

*爱你&永不变心* 提交于 2019-12-06 08:45:08
问题 Closed. This question is off-topic. It is not currently accepting answers. Want to improve this question? Update the question so it's on-topic for Stack Overflow. Closed 4 years ago . Is there any way to remote-desktop INTO a Windows CE device if all I have to work with on that device is a USB port? I'd like to be able to record the screen. 回答1: ActiveSync supports ActiveSync Remote Display . And ActiveSync works via USB. See if your WinCE device supports ActiveSync. Otherwise, you could do

What is are the tradeoffs of developing under Windows CE 6.0 vs Windows Mobile 6.1

喜夏-厌秋 提交于 2019-12-06 05:05:00
问题 I have a Windows .NET application that I plan to "port" and tailor to a mobile device. The application consists of a standalone .NET program that works with a barcode scanner, has a simple UI and records the scans to a file. There is also a Windows Service that synchronizes data to a server using web services (proprietary sync protocol). Memory/disk/network requirements are rather minimal. We have no existing WinCE or WinMo code bases and do not require other applications on the device. The

localization with .net compact framework

北城以北 提交于 2019-12-05 22:42:20
I'm developing an application for mobile devices (Windows CE 5.0, .NET compact framwork 2.0 pre-installed) using .NET compact framework 3.5 and MS Visual Studio 2008. I'm using the built-in option for creating localized forms. This works perfectly as long as I use the debugging function of Visual Studio with the mobile device connected to my desktop computer. In this case, Visual Studio deploys my application along with .NET compact framework 3.5. After disconnecting the mobile device and having installed my application it is still working as expected. My problem is: If I install the .NET

Control a wince device from desktop

自闭症网瘾萝莉.ら 提交于 2019-12-05 16:18:00
I would like to know if there is a tool simillar to mymobiler for Wince 5.0 which I can use to control the device from my desktop. I use mymobiler (v1.25) but I believe it controls only devices running on WM5 and above. Any help would be highly apprecited as the screen of my device has stopped working. I use MyMobiler myself when I am coding for WinCE5.0 (not very often but I do know that it works.) In your extracted MyMobiler zip file is three versions of remote.exe. remote.exe remote.exe.50 remote.exe.40 The only one I have gotten to work on wince5 is remote.exe.40 Just rename the existing

Disable CE windows animation, programmatically?

爱⌒轻易说出口 提交于 2019-12-05 14:32:01
Here is how to do it with a registry key. * Go to HKEY_LOCAL_MACHINE\SYSTEM\GWE * Create a DWORD named Animate if it does not already exist * Edit the DWORD value named Animate * 0 - Disables Window Animation 1 - Enables Window Animation However, it needs restart of the device. I would like to know if there is anyway to disable it instantly, programmatically? Take a look at SystemParametersInfo . There is no animation setting, but maybe if you notify GWES of a different change it will also update the animation state. 来源: https://stackoverflow.com/questions/3268631/disable-ce-windows-animation

How to create applications for Windows CE

别来无恙 提交于 2019-12-05 10:37:32
I'm new to the CE environment and I was wanting to create applications for a computer(Intel) running on CE(5 and up). What exactly do I need to to get started and where do I go? I have never used CE before but I do have experience writing code in C, C++, C#, and Java. Thanks, If you are interested in writing application using C#, do a little search for Compact Framework (CF). It is the stripped down version available in Windows CE. Keep in mind that Windows CE is a highly customizable OS and you have no guarantee that it will have the component to support your application (that includes C#) -

HOWTO: Call Managed C# Interface From Unmanaged C++ On WindowsCE Compact Framework

假如想象 提交于 2019-12-05 06:37:56
I have extensive unmanaged Windows CE 5 C++ code that provides a UI that I want to use in a new product by combining it with a large amount of newer business and communications logic written in managed C# on Windows CE 6 and the Compact Framework. The UI may know about the business logic, but I want the business logic ignorant of the UI such that I can later replace it with a managed version, or any other UI that I choose as a front-end. I found an article that describes how to use COM as the bridge in the Windows world, but I'm having difficulty applying it in the .NET CF under WinCE. In the

How to decode a Windows CE call stack?

雨燕双飞 提交于 2019-12-05 02:44:43
问题 Desktop Windows OSs have a "StackWalk64" function, upon which Jochen Kalmbach made a library for decoding the call stack into something human-readable. I need a similar tool, but for Windows CE. WinCE has a function to get the call stack, GetThreadCallStack, but once I have the raw return addresses, how do I Determine the module (DLL or EXE) from each program counter? Determine the function that contains the address, using my .map or .pdb files? PS. If it helps anyone, I also found OS

How to use GC.KeepAlive() and for what purpose?

岁酱吖の 提交于 2019-12-05 00:06:44
How to use GC.KeepAlive() and for what purpose? I transfer file from terminal (Windows-CE) to Server using Socket. The time that need to transfer is 8 minutes.A fter 5 minutes the Windows-CE shut-down (if touch screen not pressed) If I use GC.KeepAlive() for this, does this my problem? You very rarely need to use GC.KeepAlive - very rarely. You'd use it if you wanted to prevent the side-effect of a finalizer from occurring too early, for example. I've most often seen it used for Mutex - keeping mutex alive until the end of an app to make sure there's only one instance. (A using statement is

C# Windows CE .net 3.5 to checked the memory usage

谁说我不能喝 提交于 2019-12-04 23:57:00
问题 I'm a newbie in this place and starter with C# mobile. Now , I'm working on C# handheld device platform. So , I have some question to ask about how to get the memory usage. I have try GC.GetTotalMemory() and get the allocated memory that the GC used. But , Can I use this to estimated that how much my application was allocated the memory. I suppose that it may be but not actual correct. Then I've try google to searching for any reference or class or anything to use for checked the memory on