<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>NXG Dotnet Blog</title>
	<atom:link href="http://nxglabs.in/dotnet/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://nxglabs.in/dotnet</link>
	<description>A Blog By Bhushan Kediya</description>
	<lastBuildDate>Tue, 09 Mar 2010 20:14:40 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Adding Controls to Windows Form</title>
		<link>http://nxglabs.in/dotnet/?p=29</link>
		<comments>http://nxglabs.in/dotnet/?p=29#comments</comments>
		<pubDate>Fri, 05 Mar 2010 13:03:50 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction to C#]]></category>

		<guid isPermaLink="false">http://nxglabs.in/dotnet/?p=29</guid>
		<description><![CDATA[ 
To add a Control to ‘form1’, first make sure that the Visual C# Toolbox is open.
You can see the toolbox to the left of ‘Form1’.
If not then Select the View à Toolbox menu item or Press Ctrl + Alt + X.

Now simply drag a textbox from the toolbox to ‘Form1’, or just double-click the ‘Textbox’ [...]]]></description>
			<content:encoded><![CDATA[<p> </p>
<p>To add a Control to ‘form1’, first make sure that the Visual C# Toolbox is open.</p>
<p>You can see the toolbox to the left of ‘Form1’.</p>
<p>If not then Select the View à Toolbox menu item or Press Ctrl + Alt + X.</p>
<ul>
<li>Now simply drag a textbox from the toolbox to ‘Form1’, or just double-click the ‘Textbox’ control in the toolbox. This adds a textbox to ‘Form1’.</li>
<li>Now add a button to ‘Form1’ in the same manner as shown.</li>
</ul>
<p><a href="http://nxglabs.in/dotnet/wp-content/uploads/2010/03/fifthpage1-copy.jpg"><img class="alignleft size-full wp-image-30" title="Image with ToolBox at left and Controls " src="http://nxglabs.in/dotnet/wp-content/uploads/2010/03/fifthpage1-copy.jpg" alt="" width="945" height="531" /></a></p>
<p style="text-align: center;"><strong>Properties</strong></p>
<ul>
<li>Click the button in ‘Form1’ to select it so the fuzzy outline appears around it.</li>
<li>Now, move to the properties window at the lower right of the IDE. If not seen then select View à Properties Window or press F4 key.</li>
<li>Click ‘Text’ Property in the properties window; change the text of the button from ‘button1’ to ‘Click Me’.</li>
</ul>
<p> The properties window lists properties, the Property on the left &amp; their values on the right. To change a property’s value, you only have to edit its setting and press enter.</p>
<p>To associate the code with button double-clicks the button, a file name ‘Form1.cs’ will open.</p>
<p>In it the method name:</p>
<p>      private void button1_Click (object sender, Eventargs e)</p>
<p>      {</p>
<p>      }</p>
<p>Will see.</p>
<p>In this method write, textbox1.text = “JAI GAJANAN”;</p>
<p> Now Run the Program by Selecting Debug/start Debugging, or by pressing F5.</p>
<p>The application starts and when yu click the ‘Click Me’ button, the message “JAI GAJANAN” appears in the text box.</p>
<p>To close the application, click the close button (X) at upper right.</p>
<p>Visual C# has a handy way of letting you know when a file has been changed and has not been saved- an asterisk (*) will appear after the name of the file. But when compile the program it automatically saves the Code.</p>
]]></content:encoded>
			<wfw:commentRss>http://nxglabs.in/dotnet/?feed=rss2&amp;p=29</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating First Windows Application</title>
		<link>http://nxglabs.in/dotnet/?p=16</link>
		<comments>http://nxglabs.in/dotnet/?p=16#comments</comments>
		<pubDate>Fri, 25 Dec 2009 15:03:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction to C#]]></category>

		<guid isPermaLink="false">http://nxglabs.in/dotnet/?p=16</guid>
		<description><![CDATA[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     [...]]]></description>
			<content:encoded><![CDATA[<p>Now, let’s start with creating the <strong>Windows Application.</strong></p>
<ul>
<li>Select      New option in the file menu.</li>
<li>Select      ‘Project option’ in the submenu.</li>
<li>The window which will appears look like as shown below.</li>
</ul>
<p><a href="http://nxglabs.in/dotnet/wp-content/uploads/2009/12/secondpage1.jpg"><img class="alignleft size-full wp-image-18" title="secondpage" src="http://nxglabs.in/dotnet/wp-content/uploads/2009/12/secondpage1.jpg" alt="" width="669" height="399" /></a></p>
<ul>
<li>Select      the node ‘Visual C#’ in the ‘Project types’.</li>
<li>Select      the ‘Windows Forms Application’ in the ‘Templates’ section.</li>
<li>Name      the New Project &amp; specify where to store it.</li>
<li>Click      OK button to create this New Visual C# Project.</li>
<li>This      creates New Windows Project and opens its Designer Window.</li>
<li>The window which will appears look like as shown below.</li>
</ul>
<p><a href="http://nxglabs.in/dotnet/wp-content/uploads/2009/12/thirdpage.jpg"><img class="alignleft size-large wp-image-19" title="New Designer Window in C#" src="http://nxglabs.in/dotnet/wp-content/uploads/2009/12/thirdpage-1024x576.jpg" alt="" width="793" height="447" /></a></p>
<ul>
<li>‘Form1’      is the window that will become our new windows Application.</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://nxglabs.in/dotnet/?feed=rss2&amp;p=16</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Introduction to Visual C#</title>
		<link>http://nxglabs.in/dotnet/?p=6</link>
		<comments>http://nxglabs.in/dotnet/?p=6#comments</comments>
		<pubDate>Fri, 18 Dec 2009 14:49:00 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Introduction to C#]]></category>

		<guid isPermaLink="false">http://nxglabs.in/dotnet/?p=6</guid>
		<description><![CDATA[Visual C# is one of the most popular programming languages available today.
There are four types of Application based on Visual C#.

Windows      Forms (local to our machine).
Web      Forms (these are 4 across the internet).
Console      Application (Used in DOS-Window).
Mobile    [...]]]></description>
			<content:encoded><![CDATA[<p>Visual C# is one of the most popular programming languages available today.</p>
<p>There are four types of Application based on Visual C#.</p>
<ol>
<li>Windows      Forms (local to our machine).</li>
<li>Web      Forms (these are 4 across the internet).</li>
<li>Console      Application (Used in DOS-Window).</li>
<li>Mobile      Application (Used in Mobile Phone).</li>
</ol>
<p>For Creating these applications .Net must be installed in your PC.</p>
<p style="text-align: left;">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.</p>
<p style="text-align: left;">After installing Visual Studio 2008, start it.<br />
After Starting it will look like as follows:</p>
<p><a href="http://nxglabs.in/dotnet/wp-content/uploads/2009/12/firstpage.JPG"><img class="size-full wp-image-7 alignleft" title="First Page After Opening Visual Studio 2008" src="http://nxglabs.in/dotnet/wp-content/uploads/2009/12/firstpage.JPG" alt="" width="863" height="496" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://nxglabs.in/dotnet/?feed=rss2&amp;p=6</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
