How to connect a Windows Mobile PDA to Windows 10

Unfortunately the Windows Mobile Device Center stopped working out of the box after the Creators Update for Windows 10. The application won’t open and therefore it’s impossible to get the sync working. In order to get it running now we need to modify the ActiveSync registry settings. Create a BAT file with the following contents … Read more

How to loop through WebHeaderCollection

That’s an awful collection, I think. See MSDN sample. I’d prefer this one: var headers = new System.Net.WebHeaderCollection(); headers.Add(“xxx”, “yyy”); headers.Add(“zzz”, “fff”); headers.Add(“xxx”, “ttt”); for(int i = 0; i < headers.Count; ++i) { string header = headers.GetKey(i); foreach(string value in headers.GetValues(i)) { Console.WriteLine(“{0}: {1}”, header, value); } } Unfortunately there is no way to get … Read more

Can I write native iPhone, Android, Windows, Blackberry apps using Python? [duplicate]

Yes you can use kivy This is a nice cross platform python framework which works for Android, Win7, Linux, Mac. iOS is possibile but very trivial as Apple doesn’t allow scripting. And for Android Google provides something called ASE (Android Scripting Environment) which allows scripting languages (Python included) to run on Android. More details here … Read more

Visual studio the project needs to be deployed before it can be started

Probably the reason for this is that your Build and Deploy configurations aren’t enabled. To enable these configurations. Do these steps: Step 1: Open the Configuration Manager by clicking the active solution configuration. The default is <Debug>: Step 2: Enable the Build and Deploy configurations by checking the boxes for Any CPU. After this, you … Read more

What are the most valuable .Net Compact Framework Tips, Tricks, and Gotcha-Avoiders? [closed]

Sure: Use a physical device whenever possible (not the emulator) Test with multiple devices (different vendors, different models) Concentrate testing around sleep/wakeup behaviors When using MSTEST unit tests, never use private accessors Avoid ActiveSync like the plague – debug using CoreCon direct Get familiar with RPM and start using it early Reuse objects when possible … Read more

tech