Subscribe to our RSS Feeds
Hello, this is a sample text to show how you can display a short information about you and or your blog. You can use this space to display text or image introduction or to display 468 x 60 ads and to maximize your earnings.

C# and .NET based applications that run on Apple's iPhone and Apple's iPod Touch devices

0 Comments »

What is MonoTouch?

MonoTouch allows developers to create C# and .NET based applications that run on Apple's iPhone and Apple's iPod Touch devices, while taking advantage of the iPhone APIs and reusing both code and libraries that have been built for .NET, as well as existing skills.

MonoTouch Evaluation

The evaluation version of MonoTouch does not expire, but enables development and testing against the iPhone Simulator only.

Installation Quickstart

To get started developing with MonoTouch today, download and install the following four components in order:

Detailed Installation Instructions

For a step-by-step guide through the installation process, please follow the detailed installation instructions.

Please share your email address with us

Once a valid email address is entered, click the 'Download' button and the download of MonoTouch Evaluation version will start immediately.
5:16 AM

Create custom cursor from image

0 Comments »
Bitmap b = (Bitmap)Bitmap.FromFile("G:\\Documents and Settings\\vishal\\My Documents\\Visual Studio 2008\\Projects\\WindowsFormsApplication1\\WindowsFormsApplication1\\Resources\\i4.gif");
IntPtr ptr = b.GetHicon();
Cursor c = new Cursor(ptr);
// attach cursor to the form
this.Cursor = c;
10:08 PM