<?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>Visual Basic Tutorial</title>
	<atom:link href="http://www.vbtutor.net/index.php/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.vbtutor.net</link>
	<description>This is the Visual Basic tutorial and resource center where everyone can learn visual basic programming from our  tutorials including visual basic 2012, visual Basic 2010, visual basic 2008 and visual basic 6 .</description>
	<lastBuildDate>Mon, 20 May 2013 13:27:19 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5.1</generator>
		<item>
		<title>Creating a Scientific Calculator in Visual Basic</title>
		<link>http://www.vbtutor.net/index.php/2013/05/20/creating-a-scientific-calculator-in-visual-basic/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/20/creating-a-scientific-calculator-in-visual-basic/#comments</comments>
		<pubDate>Mon, 20 May 2013 13:27:19 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3204</guid>
		<description><![CDATA[<p>In Visual Basic 6, we can create a scientific calculator that resembles a typical scientific calculator albeit a simpler version. Other than the number buttons, the operator buttons and some additional buttons such as the memory button and the clear &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/20/creating-a-scientific-calculator-in-visual-basic/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/20/creating-a-scientific-calculator-in-visual-basic/">Creating a Scientific Calculator in Visual Basic</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>In Visual Basic 6, we can create a scientific calculator that resembles a typical scientific calculator albeit a simpler version. Other than the number buttons, the operator buttons and some additional buttons such as the memory button and the clear button, we have added all three trigonometric functions and the log functions.</p>
<p>The interface is shown below:<br />
<a href="http://www.vbtutor.net/wordpress/wp-content/uploads/2013/05/Cal_Sctific.jpg"><img class="aligncenter size-full wp-image-3205" alt="Cal_Sctific" src="http://www.vbtutor.net/wordpress/wp-content/uploads/2013/05/Cal_Sctific.jpg" width="388" height="382" /></a></p>
<p>I want you to try writing code for this calculator and I will show you the full code later.</p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/20/creating-a-scientific-calculator-in-visual-basic/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/20/creating-a-scientific-calculator-in-visual-basic/">Creating a Scientific Calculator in Visual Basic</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/20/creating-a-scientific-calculator-in-visual-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Learn more about looping in Visual Basic</title>
		<link>http://www.vbtutor.net/index.php/2013/05/17/learn-more-about-looping-in-visual-basic/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/17/learn-more-about-looping-in-visual-basic/#comments</comments>
		<pubDate>Fri, 17 May 2013 04:20:32 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3183</guid>
		<description><![CDATA[<p>We have learned how to handle decisions making process using If&#8230;Then&#8230;Else and also Select Case program structures in Visual Basic. Another procedure that involves decisions making is looping. VB allows a procedure to be repeated many times until a condition &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/17/learn-more-about-looping-in-visual-basic/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/17/learn-more-about-looping-in-visual-basic/">Learn more about looping in Visual Basic</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>We have learned how to handle decisions making process using If&#8230;Then&#8230;Else and also Select Case program structures in Visual Basic. Another procedure that involves decisions making is looping. VB allows a procedure to be repeated many times until a condition or a set of conditions is fulfilled. This is generally called looping . Looping is a very useful feature of VB because it makes repetitive works easier. There are  two kinds of loops in Visual Basic,  the Do&#8230;Loop  and the For&#8230;&#8230;.Next loop</p>
<p>Learn more about looping in Visual Basic from our updated <a href="http://www.vbtutor.net/vb6/lesson9.html">Visual Basic 6 lesson 9</a></p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/17/learn-more-about-looping-in-visual-basic/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/17/learn-more-about-looping-in-visual-basic/">Learn more about looping in Visual Basic</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/17/learn-more-about-looping-in-visual-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using If&#8230;Then&#8230;Else in Visual Basic</title>
		<link>http://www.vbtutor.net/index.php/2013/05/15/using-if-then-else-in-visual-basic/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/15/using-if-then-else-in-visual-basic/#comments</comments>
		<pubDate>Wed, 15 May 2013 03:15:14 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3171</guid>
		<description><![CDATA[<p>To control the program flow in Visual Basic 6, we can use various conditional operators. Basically, they resemble mathematical  operators. Conditional operators are very powerful tools, they let the Visual Basic 6 program compares data values and then decide what &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/15/using-if-then-else-in-visual-basic/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/15/using-if-then-else-in-visual-basic/">Using If&#8230;Then&#8230;Else in Visual Basic</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>To control the program flow in Visual Basic 6, we can use various conditional operators. Basically, they resemble mathematical  operators. Conditional operators are very powerful tools, they let the Visual Basic 6 program compares data values and then decide what action to take, whether to execute a program or terminate the program and more.  Some of the conditional operators are <strong>+, -, &gt;, &lt; ,&gt;=</strong> and <strong>&lt;=.</strong></p>
<p>On top of the conditional operators,  there are a few logical operators which offer added power to the Visual Basic programs. They are <strong>And, Or, Xor</strong> and <strong>Not. </strong> <span style="color: #000000;">To effectively control the Visual Basic program flow, we shall use the <strong>If&#8230;Then&#8230;Else </strong>statement together with the conditional operators and logical operators.</span></p>
<p>Read more about conditional and logical operators and the usage of If&#8230;.Then.. Else in our newly updated and enhanced <a title="Visual Basic 6 Lesson 7" href="http://www.vbtutor.net/vb6/lesson7.html">Visual Basic 6 Lesson 7.</a></p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/15/using-if-then-else-in-visual-basic/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/15/using-if-then-else-in-visual-basic/">Using If&#8230;Then&#8230;Else in Visual Basic</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/15/using-if-then-else-in-visual-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Building Visual Basic Applications</title>
		<link>http://www.vbtutor.net/index.php/2013/05/13/building-visual-basic-applications/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/13/building-visual-basic-applications/#comments</comments>
		<pubDate>Mon, 13 May 2013 08:14:01 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3167</guid>
		<description><![CDATA[<p>Before we start building a Visual Basic 6 application, we need to understand the basic concepts of properties , events and methods. Every object in VB 6, such as a form , a command button , a text box and more have a set &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/13/building-visual-basic-applications/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/13/building-visual-basic-applications/">Building Visual Basic Applications</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Before we start building a Visual Basic 6 application, we need to understand the basic concepts of properties , events and methods. Every object in VB 6, such as a form , a command button , a text box and more have a set of properties that describe them. Setting the objects&#8217; properties is the first step in building a Visual Basic application, i.e. designing the interface. We will learn more about setting properties in the <a href="http://www.vbtutor.net/vb6/lesson3.html">lesson 3</a>.</p>
<p>The next step in building a Visual Basic application is to write code to response to the events. Events usually comprises actions triggered by the user, such as clicking the mouse buttons, pressing a key on the keyboard, dragging an object and more.</p>
<p>Read more about building Visual Basic applications  in our newly updated <a href="http://www.vbtutor.net/vb6/lesson2.html">Visual Basic 6 Lesson 2</a></p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/13/building-visual-basic-applications/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/13/building-visual-basic-applications/">Building Visual Basic Applications</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/13/building-visual-basic-applications/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Basic 6 is Event-Driven Programming Language. What does it mean?</title>
		<link>http://www.vbtutor.net/index.php/2013/05/12/visual-basic-6-is-event-driven-programming-language-what-does-it-mean/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/12/visual-basic-6-is-event-driven-programming-language-what-does-it-mean/#comments</comments>
		<pubDate>Sun, 12 May 2013 07:44:50 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3164</guid>
		<description><![CDATA[<p>VISUAL BASIC is a VISUAL and Event-driven Programming Language. These are the main divergence from the old BASIC. In BASIC, programming is done in a text-only environment and the program is executed sequentially. In Visual Basic 6, programming is done &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/12/visual-basic-6-is-event-driven-programming-language-what-does-it-mean/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/12/visual-basic-6-is-event-driven-programming-language-what-does-it-mean/">Visual Basic 6 is Event-Driven Programming Language. What does it mean?</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>VISUAL BASIC is a VISUAL and <strong>Event-driven Programming Language.</strong> These are the main divergence from the old BASIC. In BASIC, programming is done in a text-only environment and the program is executed sequentially. In Visual Basic 6, programming is done in a graphical environment. In the old BASIC, you have to write program code for each graphical object you wish to display it on screen, including its position and its color. However, In Visual Basic 6 , you just need to drag and drop any graphical object anywhere on the form, and you can change its properties using the properties window.</p>
<p>In addition, Visual Basic 6 is Event-driven because we need to write code in order to perform some tasks in response to certain events. The events usually comprises but not limited to the user&#8217;s inputs. Some of the events are load, click, double click, drag and drop, pressing the keys and more. We will learn more about events in later lessons. Therefore, a Visual Basic 6 Program is made up of many subprograms, each has its own program code, and each can be executed independently and at the same time each can be linked together in one way or another.</p>
<p>Read more about Visual Basic 6 in our updated <a href="http://www.vbtutor.net/vb6/lesson1.html">Visual Basic 6 lesson 1</a></p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/12/visual-basic-6-is-event-driven-programming-language-what-does-it-mean/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/12/visual-basic-6-is-event-driven-programming-language-what-does-it-mean/">Visual Basic 6 is Event-Driven Programming Language. What does it mean?</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/12/visual-basic-6-is-event-driven-programming-language-what-does-it-mean/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Basic 6 Inventory Management System</title>
		<link>http://www.vbtutor.net/index.php/2013/05/10/visual-basic-6-inventory-management-system/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/10/visual-basic-6-inventory-management-system/#comments</comments>
		<pubDate>Fri, 10 May 2013 10:41:23 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3157</guid>
		<description><![CDATA[<p>All businesses involve inventory and need to manage it efficiently to ensure smooth running of the business activities and profitability. To manage inventory efficiently, business owners need to develop a good inventory management system . Building a sound inventory management &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/10/visual-basic-6-inventory-management-system/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/10/visual-basic-6-inventory-management-system/">Visual Basic 6 Inventory Management System</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>All businesses involve inventory and need to manage it efficiently to ensure smooth running of the business activities and profitability. To manage inventory efficiently, business owners need to develop a good inventory management system . Building a sound inventory management system usually incur high cost. Fortunately, we can use Visual Basic 6 to build an inventory management system which does not require big capital, you can do it at home. In Visual Basic 6, there are a number of built-in database management tools which we can use to manage the data.</p>
<p>Read further to learn how to build an inventory management system in Visual Basic 6 by following the link below:</p>
<p><a href="http://www.vbtutor.net/VB_Sample/inventory.htm">http://www.vbtutor.net/VB_Sample/inventory.htm</a></p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/10/visual-basic-6-inventory-management-system/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/10/visual-basic-6-inventory-management-system/">Visual Basic 6 Inventory Management System</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/10/visual-basic-6-inventory-management-system/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Creating Databases using Visual Data Manager in Visual Basic 6</title>
		<link>http://www.vbtutor.net/index.php/2013/05/10/creating-databases-using-visual-data-manager-in-visual-basic-6/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/10/creating-databases-using-visual-data-manager-in-visual-basic-6/#comments</comments>
		<pubDate>Fri, 10 May 2013 04:00:00 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3153</guid>
		<description><![CDATA[<p>Database manipulation and management is an important component in Visual Basic programming. While creating databases are mostly handled by database software such Microsoft Access, MySql, Oracle, MS FoxPro and more, you can actually use a built-in database creation program in &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/10/creating-databases-using-visual-data-manager-in-visual-basic-6/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/10/creating-databases-using-visual-data-manager-in-visual-basic-6/">Creating Databases using Visual Data Manager in Visual Basic 6</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Database manipulation and management is an important component in Visual Basic programming. While creating databases are mostly handled by database software such Microsoft Access, MySql, Oracle, MS FoxPro and more, you can actually use a built-in database creation program in Visual Basic 6 called Visual Data Manager. Visual Data Manager can be used to create tables, add new data as well as edit data. Besides that, it can be used to modify table structure.</p>
<p>To learn how to create databases using Visual Data Manager , following the link below:</p>
<p><a href="http://www.vbtutor.net/index.php/creating-database-using-visual-data-manager/">http://www.vbtutor.net/index.php/creating-database-using-visual-data-manager/</a></p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/10/creating-databases-using-visual-data-manager-in-visual-basic-6/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/10/creating-databases-using-visual-data-manager-in-visual-basic-6/">Creating Databases using Visual Data Manager in Visual Basic 6</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/10/creating-databases-using-visual-data-manager-in-visual-basic-6/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Declaring Variables in Visual Basic</title>
		<link>http://www.vbtutor.net/index.php/2013/05/09/declaring-variables-in-visual-basic/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/09/declaring-variables-in-visual-basic/#comments</comments>
		<pubDate>Thu, 09 May 2013 10:15:46 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3151</guid>
		<description><![CDATA[<p>There are many types of data that we come across in our daily life. For example, we need to handle data such as names, addresses, money, date, stock quotes, statistics and more everyday. Similarly in Visual Basic, we have to &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/09/declaring-variables-in-visual-basic/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/09/declaring-variables-in-visual-basic/">Declaring Variables in Visual Basic</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>There are many types of data that we come across in our daily life. For example, we need to handle data such as names, addresses, money, date, stock quotes, statistics and more everyday. Similarly in Visual Basic, we have to deal with all sorts of  of data, some can be mathematically calculated while some are in the form of text or other forms. VB divides data into different types so that it is easier to manage when we need to write the code involving those data.</p>
<p>Read more about variables declaration in Visual Basic in our updated <a href="http://www.vbtutor.net/vb6/lesson5.html">Visual Basic 6 Lesson 5</a></p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/09/declaring-variables-in-visual-basic/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/09/declaring-variables-in-visual-basic/">Declaring Variables in Visual Basic</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/09/declaring-variables-in-visual-basic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Errors Handling in Visual Basic 2012</title>
		<link>http://www.vbtutor.net/index.php/2013/05/04/errors-handling-in-visual-basic-2012/</link>
		<comments>http://www.vbtutor.net/index.php/2013/05/04/errors-handling-in-visual-basic-2012/#comments</comments>
		<pubDate>Sat, 04 May 2013 07:30:03 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3145</guid>
		<description><![CDATA[<p>Error handling is an essential procedure in Visual Basic 2012 programming because it helps make a program error-free. Error-free code not only enables the programs to run smoothly and efficiently, it can also prevent all sorts of problems from happening &#8230; <a href="http://www.vbtutor.net/index.php/2013/05/04/errors-handling-in-visual-basic-2012/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/04/errors-handling-in-visual-basic-2012/">Errors Handling in Visual Basic 2012</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Error handling is an essential procedure in Visual Basic 2012 programming because it helps make a program error-free. Error-free code not only enables the programs to run smoothly and efficiently, it can also prevent all sorts of problems from happening like program crashes or system hangs.</p>
<p>Errors often occur due to incorrect input from the user. For example, the user might make the mistake of attempting to enter text (string) to a box that is designed to handle only numeric values such as the weight of a person, the computer will not be able to perform arithmetic calculation for text therefore will create an error. These errors are known as synchronous errors.</p>
<p>Therefore a good programmer should be more alert to the parts of program that could trigger errors and should write errors handling code to help the user in managing the errors. Writing errors handling code is a good practice for Visual Basic 2012 programmers, so do not try to finish a program fast by omitting the errors handling code. However, there should not be too many errors handling code in the program as it create problems for the programmer to maintain and troubleshoot the program later.</p>
<p>Read More by following the link below:<br />
<a href="http://www.vbtutor.net/index.php/visual-basic-2012-lesson-20/">http://www.vbtutor.net/index.php/visual-basic-2012-lesson-20/</a></p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/05/04/errors-handling-in-visual-basic-2012/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/05/04/errors-handling-in-visual-basic-2012/">Errors Handling in Visual Basic 2012</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/05/04/errors-handling-in-visual-basic-2012/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Visual Basic 2012 Tutorial</title>
		<link>http://www.vbtutor.net/index.php/2013/04/11/visual-basic-2012-tutorial/</link>
		<comments>http://www.vbtutor.net/index.php/2013/04/11/visual-basic-2012-tutorial/#comments</comments>
		<pubDate>Thu, 11 Apr 2013 09:48:03 +0000</pubDate>
		<dc:creator>Dr.Liew</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.vbtutor.net/?p=3093</guid>
		<description><![CDATA[<p>Visual Basic Express 2012 is the latest version of Visual Basic launched by Microsoft in 2012. Visual Basic Express 2012 is almost similar to Visual Basic Express 2010  but it has added many new features. The most distinct difference is &#8230; <a href="http://www.vbtutor.net/index.php/2013/04/11/visual-basic-2012-tutorial/">Continue reading <span class="meta-nav">&#8594;</span></a></p><p>The post <a href="http://www.vbtutor.net/index.php/2013/04/11/visual-basic-2012-tutorial/">Visual Basic 2012 Tutorial</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></description>
				<content:encoded><![CDATA[<p>Visual Basic Express 2012 is the latest version of Visual Basic launched by Microsoft in 2012. Visual Basic Express 2012 is almost similar to Visual Basic Express 2010  but it has added many new features. The most distinct difference is that Visual Basic Express 2012 no more comes as a stand alone program, it is now integrated with other Microsoft Programming languages C# and C++ in a package called Visual Studio 2012. Further, Visual Studio Express 2012 now come in five editions, they are:</p>
<p>Visual Studio Express 2012 for Web<br />
Visual Studio Express 2012 for Windows 8<br />
Visual Studio Express 2012 for Windows Desktop<br />
Visual Studio Express 2012 for Windows Phone<br />
Visual Studio Team Foundation Server Express 2012<br />
Right now we shall concentrate on learning Visual Basic 2012 Express for Windows Desktop since most of you are using old versions of windows, so you will need to download the free software from Microsoft site below:<br />
<a href="http://www.microsoft.com/visualstudio/eng/downloads#d-2012-editions">http://www.microsoft.com/visualstudio/eng/downloads#d-2012-editions</a></p>
<p>Start learning <a href="http://www.vbtutor.net/index.php/visual-basic-2012-tutorial/">Visual Basic 2012</a> now.</p>
<g:plusone href="http://www.vbtutor.net/index.php/2013/04/11/visual-basic-2012-tutorial/"></g:plusone><p>The post <a href="http://www.vbtutor.net/index.php/2013/04/11/visual-basic-2012-tutorial/">Visual Basic 2012 Tutorial</a> appeared first on <a href="http://www.vbtutor.net">Visual Basic Tutorial</a>.</p>]]></content:encoded>
			<wfw:commentRss>http://www.vbtutor.net/index.php/2013/04/11/visual-basic-2012-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
