windows-ce

Windows CE SDK for Visual Studio 2008

。_饼干妹妹 提交于 2019-11-27 20:53:08
问题 I am new to Windows CE programming. I have Visual Studio 2008 and Visual Studio 2005. I have found the following SDK for Windows Mobile http://www.microsoft.com/downloads/details.aspx?familyid=06111A3A-A651-4745-88EF-3D48091A390B&displaylang=en Please help me in deciding if this is the correct one, or please feel free to redirect me the correct one Thanks in advance Sujay 回答1: If you are targetting a Windows CE device (and not Windows Mobile), then each device has it's own specific SDK. If

Debugging winMobile application on remote device (PDA, ARM) from Visual Studio

安稳与你 提交于 2019-11-27 15:35:56
问题 Hi! I have some PDAs (windows mobile) to test my application. One of them is HTC Touch Dual, and it have some bugs in debugging. There is another ARMv6 device I can use, but it's far far away. So I can't use USB cable, but can use TCP/IP (internet, not intranet). Do you know, how can I connect to remote windows mobile device to debug application on it? We tried different ways and now we know this: ActiveSync is bad. It disables all external connections to device and it's impossible (or just I

Automated Test Framework - Windows CE

徘徊边缘 提交于 2019-11-27 13:17:23
问题 Looking for a way to drive a Compact Framework app running on a CE device. All we basically need is to be able to write little scripts that press buttons and click on things. Anyone know of such a tool or it best to just hack one up ourselves? 回答1: Unfortunately there are no nice, unified tools (that I've found anyway) for testing CF apps. No one provides mocking, since the CF CLR is missing things like Emit, making the taks difficult for a small market. Microsoft provides unit test

Why do I get the error “Unsafe code may only appear if compiling with /unsafe”?

让人想犯罪 __ 提交于 2019-11-27 09:36:50
问题 Why do I get the following error? Unsafe code may only appear if compiling with /unsafe"? I work in C# and Visual Studio 2008 for programming on Windows CE. 回答1: To use unsafe code blocks, the project has to be compiled with the /unsafe switch on. Open the properties for the project, go to the Build tab and check the Allow unsafe code checkbox. 回答2: Here is a screenshot: ََََََََ 回答3: Probably because you're using unsafe code. Are you doing something with pointers or unmanaged assemblies

Developing .NET Compact Framework apps in Post-2008 Visual Studio?

生来就可爱ヽ(ⅴ<●) 提交于 2019-11-27 07:00:36
I want to develop a Compact Framework App for a Windows CE 6.0 target device. Can I do this with Visual Studio 2013? If this is not possible, what would be a development environment for .net compact framework? ctacke I'm positive this question is a duplicate, but for the life of me I can't find the original so I'll re-answer here. Microsoft's support for Compact Framework development is not completely obvious or well documented. It's a mixed matrix of the target version of Windows CE, the version of the Compact Framework and the version (and SKU level) of Visual Studio. Generally speaking it

J2ME VS Android VS iPhone VS Symbian VS Windows CE [closed]

不羁岁月 提交于 2019-11-27 06:46:19
I have very little idea about mobile platforms, though I am interested to program for them. Would you please compare J2ME VS Android VS iPhone VS Symbian VS Windows CE . I would like to know: which one is better which one should I choose and why if there is any VM technology to test the programs is there any IDE, debugging facilities? Personally, I would like to code for open source, but any suggestions are welcome. I have preliminary knowledge on Java. I would also like to know, if there is anything else that you can recommend. Jeremy Logan There's several of these questions floating around

What could be causing a System.TypeLoadException?

别说谁变了你拦得住时间么 提交于 2019-11-27 04:59:46
I'm developing, with VS2008 using C#, an application for Honeywell Dolphin 6100, a mobile computer with a barcode scanner that uses Windows CE 5.0 like OS. I want to add a functionality that can send files from the local device to the distant server. I found the librairy " Tamir.SharpSSH " which can garantee this. I tested the code on a console application and on normal windows forms application and it works perfectly. But when I tried to use the same code on the winCE device, I get a TypeLoadException and I have the error message : Could not load type 'Tamir.SharpSsh.SshTransferProtocolBase'

Methods to nail down 16 bit CRC/Checksum algorithm used by Windows CE executable?

北慕城南 提交于 2019-11-27 03:36:17
问题 I need to reverse engineer CRC/Checksum algorithm implemented by windows CE executable. Being propritory protocol, it does not say anything about CRC/checksum algorithm. However, There is console interface that reports correct/calculated checksum and I can construct my own messages with random bits if message protocol is correct: I have observed that, Changing single bit in message changes checksum bytes completely. Algorithm seems to be position dependent as I fed some single 1 bit messages

Serial Port ReadLine vs ReadExisting or how to read the data from serial port properly

六月ゝ 毕业季﹏ 提交于 2019-11-27 02:41:09
问题 I am reading data from serial port. The data comes off the scale. I am now using Readline() and getting data dropped even after I removed DiscardInBuffer() . What is the proper way to read the data from the serial port? There are so few examples online that I feel it's like some holy grail that no one has figured out. Any help please? Seems like serial port is a capricious child. C#, WinCE 5.0, HP thin client, Compact framework 2.0 private void WeighSample() { this._processingDone = false;

How to Copy (and increment) Multiple Instances of a File Using Batch File

烈酒焚心 提交于 2019-11-27 02:22:19
I need to create a batch file that copies a file and increments it upon placing it at the destination. Example. copy C:\TEMP\MyDoc.txt E:\MyData\ Essentially, I need this copy command to copy every time I start it (which it does now just fine). I would like it to increment the file name instead of overwrite it though. If I ran this three times or 100 times (never a certain number) I would like to see on the "MyData" folder: MyDoc.txt MyDoc(1).txt ... Or Copy (1) I'm not really sure what the syntax is for a duplicated file nor do I necessarily care. I just want to ensure that I'm not