created in a prjeto. NET Compact Framework 3.5 for Windows Mobile 6.x. I wond开发者_如何学运维er how you do to create the installer (. cab) for this project?
Develop an application on Compact Framework. net 3.5 c# for Windows Mobile 6.x. In uninstalling the application would like to remove some keys in the register and a folder with its contents.
I have many forms on an solution in .Net compact framework using all the singleton pattern described inImplementing the Singleton Pattern in C#(the 4th version). Some forms are only used very sparingl
I\'m trying to find an unmanaged memory leak in my mobile project.I read that I should try and use AppVerifier to help find where the leak is.After running the program, I got a log that was +5mb!It ha
I am using .NET CF 2.0 with C#. I need to create Policy en开发者_Go百科forcement application, which restricts backlisted application installation on windows mobile devices. How can I get notification
I want to subclass the ListBox control and set the LBS_OWNERDRAWVARIABLE style.Subclassing is no problem and I can get messages through my own WndProc.(Actually I subclass the ListBox\'s parent in t
My mobile application needs to ping web service (WCF) periodically to get the latest data from server. The problem is, thi开发者_开发知识库s is done periodically even if there isn\'t anything new on t
I am writing an application that uses OpenNETCF.IO.Serial (open source, see serial code here) for its serial communication on a Windows CE 6.0 device.This application is coded in C# in the Compact Fra
I\'m playing with rasters and I want to know the fastest way to paint a byte[] to the screen using the .net CF.The array is a standard 24bit raster (Screen.Width * Screen.Height * 3 in length, RGB ord
OK so I have: var filteredItems = lstAllItems.Where(item => item.Parent.ID == parentId); TreeNode childNode;