Archive for December, 2009

Creating First Windows Application

Now, let’s start with creating the Windows Application.

  • Select New option in the file menu.
  • Select ‘Project option’ in the submenu.
  • The window which will appears look like as shown below.

  • Select the node ‘Visual C#’ in the ‘Project types’.
  • Select the ‘Windows Forms Application’ in the ‘Templates’ section.
  • Name the New Project & specify where to store it.
  • Click OK button to create this New Visual C# Project.
  • This creates New Windows Project and opens its Designer Window.
  • The window which will appears look like as shown below.

  • ‘Form1’ is the window that will become our new windows Application.

Introduction to Visual C#

Visual C# is one of the most popular programming languages available today.

There are four types of Application based on Visual C#.

  1. Windows Forms (local to our machine).
  2. Web Forms (these are 4 across the internet).
  3. Console Application (Used in DOS-Window).
  4. Mobile Application (Used in Mobile Phone).

For Creating these applications .Net must be installed in your PC.

We can write code in normal text file also, but it will take lot time to Code. So code writing must be done in Visual Studio 2005 or Visual Studio 2008, the IDE by Microsoft to create Application based on DotNet.

After installing Visual Studio 2008, start it.
After Starting it will look like as follows: