Developing Windows Mobile 6.5 C #: where to start?

Where would I start developing applications for Windows Mobile 6.5 using C #?

+8
source share
7 answers

Best to start with the Windows Mobile Developer Center

There you will find many different resources, laboratories, practical exercises, etc. At MSDN, you start by getting started developing applications for Windows Mobile

Some code examples can be found here.

Besides MSDN, the Internet is also full of resources, for example:

Have fun :)

+6
source

You can start by purchasing Visual Studio 2008. It contains the tools you need to develop on the Mobile 6.x platform. Unfortunately, express editions do not provide this functionality, and Visual Studio 2010 is intended only for the Windows 7 mobile platform.

If you still need to learn C #, then first get Visual Studio 2008 Express for C # and buy a book. This will allow you to learn the basics of Win32 and C # code without spending too much money.

+3
source
+3
source

Download the full version of Visual Studio 2008 for the trial version (90 days) or in full if you bought it earlier but lost the CD-ROM from http://download.microsoft.com/download/8/1/d/81d3f35e -fa03-485b-953b-ff952e402520 / VS2008ProEdition90dayTrialENUX1435622.iso . If you have a CD, of course, you can just use the CD.

Then download the Windows Mobile 6.5 SDK from http://www.microsoft.com/en-us/download/details.aspx?id=6135 .

Good luck

+1
source

Dev Env:

Start a Smart Device application using VB / C ++ / C # using Visual Studio 2008.

Smart device development

Database:

SQL compact edition

Yours faithfully..

0
source

I would recommend getting and reading the Microsoft Mobile Application Development Guide (Amazon Link).

0
source

Develop a mobile application for Windows in the 6.x series,

You must have the following requirements.

IDE development:

Visual Studio 2005 or visual studio 2008(Recommented) 

Programming knowledge:

 Microsoft Visual C++, Visual Basic, C#(Recommented due to object oriented, popular) 

Installing other tools and environments:

 Visual Studio 2008 for Development purpose Microsoft windows mobile software development kit (aks Emulator to Test) Windows Mobile Device Center (Recommented) or Active Sync (To Establish connection b/w host and emultor(Network, file system etc)) .Net FrameWork 3.5 or more (csc.exe) For Compilation of .net compact libarary .Net Compact FrameWork(CAB File) .Net SQL compact Framework (If your application uses database) 

Note:

 .Net Framework is differnet from .Net Compact Framework. Use .Net Framework for compilation, .Net compact for library. because, .net compact donot have compiler on its own. 

Download links:

All Microsoft related products are available at the Microsoft Download Center. https://www.microsoft.com/en-in/download

0
source

All Articles