<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>Codetuts VB.net</title>
	
	<link>http://vbnet.codetuts.com</link>
	<description />
	<lastBuildDate>Wed, 14 Jul 2010 10:01: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>
	<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/CodetutsVbnet" /><feedburner:info uri="codetutsvbnet" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><item>
		<title>Ping an IP address</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/vl2_wxW2lHA/ping-an-ip-address.php</link>
		<comments>http://vbnet.codetuts.com/ping-an-ip-address.php#comments</comments>
		<pubDate>Wed, 14 Jul 2010 10:01:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[Ping]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/ping-an-ip-address.php</guid>
		<description><![CDATA[My.Computer.Network.Ping(targetSystem[, timeout])
<p>targetSystem is a string IP address, a host name, or a System.Uri instance. The optional timeout argument is supplied in milliseconds and defaults to 500. </p>
<p>This method returns true if the ping is successful, or False on failure or no response.</p>
<p>To ping localhost for example you would have the following</p>
<p>My.Computer.Network.Ping(127.0.0.1timeout]) </p>


<p>Related posts:Get IP address [...]


Related posts:<ol><li><a href='http://vbnet.codetuts.com/get-ip-address.php' rel='bookmark' title='Permanent Link: Get IP address'>Get IP address</a> <small>GetIP address with VB.net Module Module1 Sub Main() Dim h...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<pre>My.Computer.Network.Ping(<tt><i>targetSystem[, timeout</i></tt>])</pre>
<p><tt><i>targetSystem</i></tt> is a string IP address, a host name, or a <tt>System.Uri</tt> instance. The optional <tt><i>timeout</i></tt> argument is supplied in milliseconds and defaults to <tt>500</tt>. </p>
<p>This method returns <tt>true</tt> if the ping is successful, or <tt>False</tt> on failure or no response.</p>
<p>To ping localhost for example you would have the following</p>
<p>My.Computer.Network.Ping(<tt><i>127.0.0.1timeout</i></tt>]) </p>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/get-ip-address.php' rel='bookmark' title='Permanent Link: Get IP address'>Get IP address</a> <small>GetIP address with VB.net Module Module1 Sub Main() Dim h...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/vl2_wxW2lHA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/ping-an-ip-address.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/ping-an-ip-address.php</feedburner:origLink></item>
		<item>
		<title>Does a directory exist</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/8kRs8l5NKHQ/does-a-directory-exist.php</link>
		<comments>http://vbnet.codetuts.com/does-a-directory-exist.php#comments</comments>
		<pubDate>Wed, 14 Jul 2010 09:56:40 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[File System]]></category>
		<category><![CDATA[DirectoryExists]]></category>
		<category><![CDATA[FileSystem]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/does-a-directory-exist.php</guid>
		<description><![CDATA[<p>Create a new Windows Forms application, and add a TextBox control named TextBox1 and a Button control named Button1 to the form. Now add the following code: </p>
<p>&#160;</p>
<p>&#160;&#160;&#160; Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; If (My.Computer.FileSystem.DirectoryExists(TextBox1.Text)) Then   &#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; MsgBox(&#34;The directory already exists.&#34;)    &#160;&#160;&#160;&#160;&#160;&#160; [...]


Related posts:<ol><li><a href='http://vbnet.codetuts.com/show-all-files-in-a-directory.php' rel='bookmark' title='Permanent Link: show all files in a directory'>show all files in a directory</a> <small>Dim file() As String file = System.IO.Directory.GetFiles(&#8220;c:\&#8221;) Dim enumerator As...</small></li><li><a href='http://vbnet.codetuts.com/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php' rel='bookmark' title='Permanent Link: LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF'>LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF</a> <small> Gymjunnky asked: Gymjunnky.com Welcome to learn vb.net this is...</small></li><li><a href='http://vbnet.codetuts.com/create-a-folder.php' rel='bookmark' title='Permanent Link: Create a folder'>Create a folder</a> <small>This example shows how to create a folder Imports System.IO...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Create a new Windows Forms application, and add a TextBox control named TextBox1 and a Button control named Button1 to the form. Now add the following code: </p>
<p>&#160;</p>
<p>&#160;&#160;&#160; Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click </p>
<p>&#160;&#160;&#160;&#160;&#160;&#160; If (My.Computer.FileSystem.DirectoryExists(TextBox1.Text)) Then   <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; MsgBox(&quot;The directory already exists.&quot;)    <br />&#160;&#160;&#160;&#160;&#160;&#160; Else    <br />&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160;&#160; MsgBox(&quot;The directory does not exist.&quot;)    <br />&#160;&#160;&#160;&#160;&#160;&#160; End If    <br />&#160;&#160;&#160; End Sub</p>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/show-all-files-in-a-directory.php' rel='bookmark' title='Permanent Link: show all files in a directory'>show all files in a directory</a> <small>Dim file() As String file = System.IO.Directory.GetFiles(&#8220;c:\&#8221;) Dim enumerator As...</small></li><li><a href='http://vbnet.codetuts.com/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php' rel='bookmark' title='Permanent Link: LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF'>LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF</a> <small> Gymjunnky asked: Gymjunnky.com Welcome to learn vb.net this is...</small></li><li><a href='http://vbnet.codetuts.com/create-a-folder.php' rel='bookmark' title='Permanent Link: Create a folder'>Create a folder</a> <small>This example shows how to create a folder Imports System.IO...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/8kRs8l5NKHQ" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/does-a-directory-exist.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/does-a-directory-exist.php</feedburner:origLink></item>
		<item>
		<title>Number of days in a month</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/tbbftzqSyYI/number-of-days-in-a-month.php</link>
		<comments>http://vbnet.codetuts.com/number-of-days-in-a-month.php#comments</comments>
		<pubDate>Wed, 14 Jul 2010 09:52:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Date and Time]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[DaysInMonth]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/number-of-days-in-a-month.php</guid>
		<description><![CDATA[<p>Dim daysInMonth As Integer = Date.DaysInMonth(Now.Year, Now.Month) </p>
<p>MsgBox(String.Format(&#34;Number of days in the current month: {0}&#34;, daysInMonth))</p>


<p>Related posts:Is this a leap year Dim leapYear As Boolean = Date.IsLeapYear(Now.Year) MsgBox(String.Format(&#34;{0} is a leap...Current date and time Dim rightNow As Date = Now Dim result As New&#160;...Get the exact date and time this will display the exact date [...]


Related posts:<ol><li><a href='http://vbnet.codetuts.com/is-this-a-leap-year.php' rel='bookmark' title='Permanent Link: Is this a leap year'>Is this a leap year</a> <small>Dim leapYear As Boolean = Date.IsLeapYear(Now.Year) MsgBox(String.Format(&quot;{0} is a leap...</small></li><li><a href='http://vbnet.codetuts.com/current-date-and-time.php' rel='bookmark' title='Permanent Link: Current date and time'>Current date and time</a> <small>Dim rightNow As Date = Now Dim result As New&#160;...</small></li><li><a href='http://vbnet.codetuts.com/get-the-exact-date-and-time.php' rel='bookmark' title='Permanent Link: Get the exact date and time'>Get the exact date and time</a> <small>this will display the exact date and time when the...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Dim daysInMonth As Integer = Date.DaysInMonth(Now.Year, Now.Month) </p>
<p>MsgBox(String.Format(&quot;Number of days in the current month: {0}&quot;, daysInMonth))</p>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/is-this-a-leap-year.php' rel='bookmark' title='Permanent Link: Is this a leap year'>Is this a leap year</a> <small>Dim leapYear As Boolean = Date.IsLeapYear(Now.Year) MsgBox(String.Format(&quot;{0} is a leap...</small></li><li><a href='http://vbnet.codetuts.com/current-date-and-time.php' rel='bookmark' title='Permanent Link: Current date and time'>Current date and time</a> <small>Dim rightNow As Date = Now Dim result As New&#160;...</small></li><li><a href='http://vbnet.codetuts.com/get-the-exact-date-and-time.php' rel='bookmark' title='Permanent Link: Get the exact date and time'>Get the exact date and time</a> <small>this will display the exact date and time when the...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/tbbftzqSyYI" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/number-of-days-in-a-month.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/number-of-days-in-a-month.php</feedburner:origLink></item>
		<item>
		<title>Is this a leap year</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/Qbo8_6xP50U/is-this-a-leap-year.php</link>
		<comments>http://vbnet.codetuts.com/is-this-a-leap-year.php#comments</comments>
		<pubDate>Wed, 14 Jul 2010 09:51:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Date and Time]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[IsLeapYear]]></category>
		<category><![CDATA[leap year]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/is-this-a-leap-year.php</guid>
		<description><![CDATA[<p>Dim leapYear As Boolean = Date.IsLeapYear(Now.Year) </p>
<p>MsgBox(String.Format(&#34;{0} is a leap year: {1}&#34;, Now.Year, leapYear))</p>


<p>Related posts:Number of days in a month Dim daysInMonth As Integer = Date.DaysInMonth(Now.Year, Now.Month) MsgBox(String.Format(&#34;Number of days...Current date and time Dim rightNow As Date = Now Dim result As New&#160;...Get the exact date and time this will display the exact date and [...]


Related posts:<ol><li><a href='http://vbnet.codetuts.com/number-of-days-in-a-month.php' rel='bookmark' title='Permanent Link: Number of days in a month'>Number of days in a month</a> <small>Dim daysInMonth As Integer = Date.DaysInMonth(Now.Year, Now.Month) MsgBox(String.Format(&quot;Number of days...</small></li><li><a href='http://vbnet.codetuts.com/current-date-and-time.php' rel='bookmark' title='Permanent Link: Current date and time'>Current date and time</a> <small>Dim rightNow As Date = Now Dim result As New&#160;...</small></li><li><a href='http://vbnet.codetuts.com/get-the-exact-date-and-time.php' rel='bookmark' title='Permanent Link: Get the exact date and time'>Get the exact date and time</a> <small>this will display the exact date and time when the...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Dim leapYear As Boolean = Date.IsLeapYear(Now.Year) </p>
<p>MsgBox(String.Format(&quot;{0} is a leap year: {1}&quot;, Now.Year, leapYear))</p>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/number-of-days-in-a-month.php' rel='bookmark' title='Permanent Link: Number of days in a month'>Number of days in a month</a> <small>Dim daysInMonth As Integer = Date.DaysInMonth(Now.Year, Now.Month) MsgBox(String.Format(&quot;Number of days...</small></li><li><a href='http://vbnet.codetuts.com/current-date-and-time.php' rel='bookmark' title='Permanent Link: Current date and time'>Current date and time</a> <small>Dim rightNow As Date = Now Dim result As New&#160;...</small></li><li><a href='http://vbnet.codetuts.com/get-the-exact-date-and-time.php' rel='bookmark' title='Permanent Link: Get the exact date and time'>Get the exact date and time</a> <small>this will display the exact date and time when the...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/Qbo8_6xP50U" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/is-this-a-leap-year.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/is-this-a-leap-year.php</feedburner:origLink></item>
		<item>
		<title>Current date and time</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/hcDb0Z-AUDw/current-date-and-time.php</link>
		<comments>http://vbnet.codetuts.com/current-date-and-time.php#comments</comments>
		<pubDate>Wed, 14 Jul 2010 09:50:30 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Date and Time]]></category>
		<category><![CDATA[date]]></category>
		<category><![CDATA[time]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/current-date-and-time.php</guid>
		<description><![CDATA[<p>Dim rightNow As Date = Now    Dim result As New&#160; System.Text.StringBuilder </p>
<p>result.Append(&#34;Date: &#34;).AppendLine(rightNow.ToShortDateString)    result.Append(&#34;Time: &#34;).AppendLine(rightNow.ToShortTimeString)     MsgBox(result.ToString())</p>


<p>Related posts:Get the exact date and time this will display the exact date and time when the...</p>
<p>Related posts brought to you by Yet Another Related Posts Plugin.</p>


Related posts:<ol><li><a href='http://vbnet.codetuts.com/get-the-exact-date-and-time.php' rel='bookmark' title='Permanent Link: Get the exact date and time'>Get the exact date and time</a> <small>this will display the exact date and time when the...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<p>Dim rightNow As Date = Now    <br />Dim result As New&#160; <br />System.Text.StringBuilder </p>
<p>result.Append(&quot;Date: &quot;).AppendLine(rightNow.ToShortDateString)    <br />result.Append(&quot;Time: &quot;).AppendLine(rightNow.ToShortTimeString)     <br />MsgBox(result.ToString())</p>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/get-the-exact-date-and-time.php' rel='bookmark' title='Permanent Link: Get the exact date and time'>Get the exact date and time</a> <small>this will display the exact date and time when the...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/hcDb0Z-AUDw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/current-date-and-time.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/current-date-and-time.php</feedburner:origLink></item>
		<item>
		<title>VB.net tutorial 4</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/4ruhph88kPA/vbnet-tutorial-4.php</link>
		<comments>http://vbnet.codetuts.com/vbnet-tutorial-4.php#comments</comments>
		<pubDate>Wed, 18 Mar 2009 19:24:39 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[Net Tutorial]]></category>
		<category><![CDATA[Net Video]]></category>
		<category><![CDATA[Vb Tutorial]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/vbnet-tutorial-4.php</guid>
		<description><![CDATA[
justanotherkid9 asked: 

<p>The third video in a series of tutorials for VB.net from begginer to advance. Comment and subscribe. Leave me a comment on what u want me to make a tutorial on.


<p>Related posts:VB.net tutorial 3  justanotherkid9 asked: The third in a series of tutorials...VB.net tutorial 1  justanotherkid9 asked: I will be making [...]


Related posts:<ol><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-3.php' rel='bookmark' title='Permanent Link: VB.net tutorial 3'>VB.net tutorial 3</a> <small> justanotherkid9 asked: The third in a series of tutorials...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-1.php' rel='bookmark' title='Permanent Link: VB.net tutorial 1'>VB.net tutorial 1</a> <small> justanotherkid9 asked: I will be making a series of...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-2.php' rel='bookmark' title='Permanent Link: VB.net tutorial 2'>VB.net tutorial 2</a> <small> justanotherkid9 asked: The second in my serise of tutorials....</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div style="float:left; padding: 12px"></div>
<div><em><strong>justanotherkid9</strong> asked: </em><br/><br/>
<div class="cc_video"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/gUnegx55IPE&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/gUnegx55IPE&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></div>
<p><br/>The third video in a series of tutorials for VB.net from begginer to advance. Comment and subscribe. Leave me a comment on what u want me to make a tutorial on.<br/><br/></div>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-3.php' rel='bookmark' title='Permanent Link: VB.net tutorial 3'>VB.net tutorial 3</a> <small> justanotherkid9 asked: The third in a series of tutorials...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-1.php' rel='bookmark' title='Permanent Link: VB.net tutorial 1'>VB.net tutorial 1</a> <small> justanotherkid9 asked: I will be making a series of...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-2.php' rel='bookmark' title='Permanent Link: VB.net tutorial 2'>VB.net tutorial 2</a> <small> justanotherkid9 asked: The second in my serise of tutorials....</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/4ruhph88kPA" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/vbnet-tutorial-4.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/vbnet-tutorial-4.php</feedburner:origLink></item>
		<item>
		<title>VB.NET Tutorial – Verzeichnis überwachen mit FileSystemWatcher</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/TaGK7_gLEgc/vbnet-tutorial-verzeichnis-uberwachen-mit-filesystemwatcher.php</link>
		<comments>http://vbnet.codetuts.com/vbnet-tutorial-verzeichnis-uberwachen-mit-filesystemwatcher.php#comments</comments>
		<pubDate>Wed, 18 Mar 2009 06:03:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[Mit]]></category>
		<category><![CDATA[Vb Net]]></category>
		<category><![CDATA[Vb Tutorial]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/vbnet-tutorial-verzeichnis-uberwachen-mit-filesystemwatcher.php</guid>
		<description><![CDATA[
hummelwalker asked: 

<p>http://www.der-softwareentwickler-blog.de : In dem Tutorial wird gezeigt wie man unter VB.NET mit FileSystemWatcher ein Verzeichnis überwachen kann


<p>Related posts:Tutorial: VB.NET Suchen in Datasets und Datatables  hummelwalker asked: http://www.Der-Softwareentwickler-Blog.de : Dieses Tutorial zeigt wie man...VB.NET &#8211; Tutorial : Datei per Drag &#038; Drop im eigenen Programm öffnen  hummelwalker asked: http://www.der-softwareentwickler-blog.de : In diesem [...]


Related posts:<ol><li><a href='http://vbnet.codetuts.com/tutorial-vbnet-suchen-in-datasets-und-datatables.php' rel='bookmark' title='Permanent Link: Tutorial: VB.NET Suchen in Datasets und Datatables'>Tutorial: VB.NET Suchen in Datasets und Datatables</a> <small> hummelwalker asked: http://www.Der-Softwareentwickler-Blog.de : Dieses Tutorial zeigt wie man...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-datei-per-drag-drop-im-eigenen-programm-offnen.php' rel='bookmark' title='Permanent Link: VB.NET &#8211; Tutorial : Datei per Drag &#038; Drop im eigenen Programm öffnen'>VB.NET &#8211; Tutorial : Datei per Drag &#038; Drop im eigenen Programm öffnen</a> <small> hummelwalker asked: http://www.der-softwareentwickler-blog.de : In diesem Tutorial zeige ich,...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-datagridview-inhalt-in-csv-datei-schreiben.php' rel='bookmark' title='Permanent Link: VB.NET &#8211; Tutorial: Datagridview &#8211; Inhalt in CSV &#8211; Datei schreiben'>VB.NET &#8211; Tutorial: Datagridview &#8211; Inhalt in CSV &#8211; Datei schreiben</a> <small> hummelwalker asked: http://www.der-softwareentwickler-blog.de : In diesem Tutorial demonstriere ich...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div style="float:left; padding: 12px"></div>
<div><em><strong>hummelwalker</strong> asked: </em><br/><br/>
<div class="cc_video"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/5f8v4aIKYmw&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/5f8v4aIKYmw&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></div>
<p><br/>http://www.der-softwareentwickler-blog.de : In dem Tutorial wird gezeigt wie man unter VB.NET mit FileSystemWatcher ein Verzeichnis überwachen kann<br/><br/></div>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/tutorial-vbnet-suchen-in-datasets-und-datatables.php' rel='bookmark' title='Permanent Link: Tutorial: VB.NET Suchen in Datasets und Datatables'>Tutorial: VB.NET Suchen in Datasets und Datatables</a> <small> hummelwalker asked: http://www.Der-Softwareentwickler-Blog.de : Dieses Tutorial zeigt wie man...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-datei-per-drag-drop-im-eigenen-programm-offnen.php' rel='bookmark' title='Permanent Link: VB.NET &#8211; Tutorial : Datei per Drag &#038; Drop im eigenen Programm öffnen'>VB.NET &#8211; Tutorial : Datei per Drag &#038; Drop im eigenen Programm öffnen</a> <small> hummelwalker asked: http://www.der-softwareentwickler-blog.de : In diesem Tutorial zeige ich,...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-datagridview-inhalt-in-csv-datei-schreiben.php' rel='bookmark' title='Permanent Link: VB.NET &#8211; Tutorial: Datagridview &#8211; Inhalt in CSV &#8211; Datei schreiben'>VB.NET &#8211; Tutorial: Datagridview &#8211; Inhalt in CSV &#8211; Datei schreiben</a> <small> hummelwalker asked: http://www.der-softwareentwickler-blog.de : In diesem Tutorial demonstriere ich...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/TaGK7_gLEgc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/vbnet-tutorial-verzeichnis-uberwachen-mit-filesystemwatcher.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/vbnet-tutorial-verzeichnis-uberwachen-mit-filesystemwatcher.php</feedburner:origLink></item>
		<item>
		<title>VB.net tutorial 3</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/Yt1DlZ2nM2Q/vbnet-tutorial-3.php</link>
		<comments>http://vbnet.codetuts.com/vbnet-tutorial-3.php#comments</comments>
		<pubDate>Sun, 15 Mar 2009 19:06:01 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[Net Tutorial]]></category>
		<category><![CDATA[Vb Net]]></category>
		<category><![CDATA[Vb Tutorial]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/vbnet-tutorial-3.php</guid>
		<description><![CDATA[
justanotherkid9 asked: 

<p>The third in a series of tutorials for vb.net. PLEASE COMMENT AND
SUBSCRIBE!!!!!!!
By the way I will make a tutorial on whatever you want me too.


<p>Related posts:VB.net tutorial 4  justanotherkid9 asked: The third video in a series of...VB.net tutorial 1  justanotherkid9 asked: I will be making a series of...VB.net tutorial 2  [...]


Related posts:<ol><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-4.php' rel='bookmark' title='Permanent Link: VB.net tutorial 4'>VB.net tutorial 4</a> <small> justanotherkid9 asked: The third video in a series of...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-1.php' rel='bookmark' title='Permanent Link: VB.net tutorial 1'>VB.net tutorial 1</a> <small> justanotherkid9 asked: I will be making a series of...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-2.php' rel='bookmark' title='Permanent Link: VB.net tutorial 2'>VB.net tutorial 2</a> <small> justanotherkid9 asked: The second in my serise of tutorials....</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div style="float:left; padding: 12px"></div>
<div><em><strong>justanotherkid9</strong> asked: </em><br/><br/>
<div class="cc_video"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/SeiIV_Ga7dE&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/SeiIV_Ga7dE&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></div>
<p><br/>The third in a series of tutorials for vb.net. PLEASE COMMENT AND<br />
SUBSCRIBE!!!!!!!<br />
By the way I will make a tutorial on whatever you want me too.<br/><br/></div>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-4.php' rel='bookmark' title='Permanent Link: VB.net tutorial 4'>VB.net tutorial 4</a> <small> justanotherkid9 asked: The third video in a series of...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-1.php' rel='bookmark' title='Permanent Link: VB.net tutorial 1'>VB.net tutorial 1</a> <small> justanotherkid9 asked: I will be making a series of...</small></li><li><a href='http://vbnet.codetuts.com/vbnet-tutorial-2.php' rel='bookmark' title='Permanent Link: VB.net tutorial 2'>VB.net tutorial 2</a> <small> justanotherkid9 asked: The second in my serise of tutorials....</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/Yt1DlZ2nM2Q" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/vbnet-tutorial-3.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/vbnet-tutorial-3.php</feedburner:origLink></item>
		<item>
		<title>LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &amp; IF</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/vw7m3Mhdwm0/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php</link>
		<comments>http://vbnet.codetuts.com/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php#comments</comments>
		<pubDate>Sun, 15 Mar 2009 14:23:03 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[123456]]></category>
		<category><![CDATA[Form1]]></category>
		<category><![CDATA[Vb 5]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php</guid>
		<description><![CDATA[
Gymjunnky asked: 

<p>Gymjunnky.com Welcome to learn vb.net this is tutorial 3 and my name is Gym_
In this lesson were going to learn some tricks with duel forms and learn how to do some very basic pass word protected applications
So lets get right to it,,
1st thing is open up VB.net ether 2005 or 2008 if you [...]


Related posts:<ol><li><a href='http://vbnet.codetuts.com/does-a-directory-exist.php' rel='bookmark' title='Permanent Link: Does a directory exist'>Does a directory exist</a> <small>Create a new Windows Forms application, and add a TextBox...</small></li><li><a href='http://vbnet.codetuts.com/visual-basic-2008-how-to-count-button-clicks.php' rel='bookmark' title='Permanent Link: Visual Basic 2008 &#8211; How to count button clicks'>Visual Basic 2008 &#8211; How to count button clicks</a> <small> blahggg61 asked: In this tutorial, I&#8217;ll be showing you...</small></li><li><a href='http://vbnet.codetuts.com/add-buttons-to-a-form-at-run-time-vbnet-tutorial.php' rel='bookmark' title='Permanent Link: Add buttons to a form at run time vb.net tutorial'>Add buttons to a form at run time vb.net tutorial</a> <small> Bhupinderjitbawa asked: add buttons to a form at run...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div style="float:left; padding: 12px"></div>
<div><em><strong>Gymjunnky</strong> asked: </em><br/><br/>
<div class="cc_video"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/ujQPTS0DsNA&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/ujQPTS0DsNA&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></div>
<p><br/>Gymjunnky.com Welcome to learn vb.net this is tutorial 3 and my name is Gym_<br />
In this lesson were going to learn some tricks with duel forms and learn how to do some very basic pass word protected applications<br />
So lets get right to it,,<br />
1st thing is open up VB.net ether 2005 or 2008 if you have Vb6.0 have a look on my channel or website and your will find plenty of tutorials for VB 5 and 6.0<br />
Ok so lets get on with the show shall we.<br />
Going to open up windows form application and change the name to project 3 and click ok<br />
Then im going to draw a button on the form<br />
Then im going to add a 2nd form<br />
Do this by clicking on project link at the top of VB and then the add windows form tab<br />
Then were going to scroll right down the bottom till we see windows form and ether double click on it or high light it and click OK<br />
This is going to add the 2nd form to our project<br />
After that were going to double click on the button we made on our form1 and insert the codes to open and close our forms<br />
Form2.show is used to make our 2nd form visible<br />
And me.hide closes no1 form in vb6.0 you could use form1.hide but in 2005 and 2008 you must use the term ME as reference to the form that the code is being placed into<br />
And that&#8217;s it all of 4 words to open and close 2 forms<br />
So let&#8217;s run the program and have a quick look<br />
Cool that works<br />
So again let&#8217;s try something a little more advanced,,, let&#8217;s make form 2 pass word protected<br />
Click on the text box icon and draw a textbox on form 1<br />
If textbox 1 . text = &#8220;123456&#8243; then<br />
Ok see the blue line its telling us that there is a error,, and if we hover our mouse over the top of it u can see its telling us there is no end if at the end of the stamen<br />
So after we make shore we have our quotation marks in place let&#8217;s put in that end if statement<br />
And lets run the program again<br />
Click the button and nothing happiness<br />
Put in the wrong pass word and click the button<br />
And nothing happens<br />
Enter the correct password and form 2 shows up and form 1 closes<br />
Now that certainly dose the job but how about we make it a bit better<br />
So 1st thing i want to do is change the colours on the forms so it can be seen a lot more easily on video.<br />
Lets change form1 to blue and form 2 to a dark red<br />
Ok to improve the function ability of this pass word protected form let put in a else statement<br />
After form show and hide type in Else<br />
Then Msgbox  &#8221; wrong pass&#8221;<br />
This means that is the if anything ells what so ever happens besides that pass word being right then the else stamen kicks in and in this case provides us with a message box saying wrong password<br />
Ok so lets see this in action shall we<br />
Run the program click the button with no pass word in we get message box<br />
Type in the wrong pass word,,, and we get message box<br />
Type in the right password and get form 2 appearing and form to leaving<br />
..<br />
what about if we want multiple boxes like how that have the key login on windows and a lot of other software as your instilling it.<br />
Very easy lets put 2 more text boxes on our form<br />
And then go into our code and put<br />
If text1 . text  = &#8220;123456&#8243; and text2 . text = &#8220;123456&#8243; and text3. Text =  &#8220;123456&#8243; then<br />
Format C drive,,, nar just kidding<br />
Form2.show<br />
Me. Hide<br />
Else<br />
Message box<br />
Run the program and lets try some different combo&#8217;s and see how it works<br />
Ok so there ya have some handy hints to know about forms, text boxes , and the if stamen when using to pass word protect stuff<br />
Remember you can watch all my videos and my website as well as heaps of cool free legal down loads..  All the source codes to my projects as well as help forums on<br />
www. gymjunnky.com<br />
My name is Gym and you have been watching learn to program in VB.NET tutorial 3<br/><br/></div>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/does-a-directory-exist.php' rel='bookmark' title='Permanent Link: Does a directory exist'>Does a directory exist</a> <small>Create a new Windows Forms application, and add a TextBox...</small></li><li><a href='http://vbnet.codetuts.com/visual-basic-2008-how-to-count-button-clicks.php' rel='bookmark' title='Permanent Link: Visual Basic 2008 &#8211; How to count button clicks'>Visual Basic 2008 &#8211; How to count button clicks</a> <small> blahggg61 asked: In this tutorial, I&#8217;ll be showing you...</small></li><li><a href='http://vbnet.codetuts.com/add-buttons-to-a-form-at-run-time-vbnet-tutorial.php' rel='bookmark' title='Permanent Link: Add buttons to a form at run time vb.net tutorial'>Add buttons to a form at run time vb.net tutorial</a> <small> Bhupinderjitbawa asked: add buttons to a form at run...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/vw7m3Mhdwm0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php</feedburner:origLink></item>
		<item>
		<title>Add buttons to a form at run time vb.net tutorial</title>
		<link>http://feedproxy.google.com/~r/CodetutsVbnet/~3/VK8R75ogq54/add-buttons-to-a-form-at-run-time-vbnet-tutorial.php</link>
		<comments>http://vbnet.codetuts.com/add-buttons-to-a-form-at-run-time-vbnet-tutorial.php#comments</comments>
		<pubDate>Sun, 15 Mar 2009 11:56:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Videos]]></category>
		<category><![CDATA[Buttons]]></category>
		<category><![CDATA[Run Time]]></category>
		<category><![CDATA[Vb Tutorial]]></category>

		<guid isPermaLink="false">http://vbnet.codetuts.com/add-buttons-to-a-form-at-run-time-vbnet-tutorial.php</guid>
		<description><![CDATA[
Bhupinderjitbawa asked: 

<p>add buttons to a form at run time or dynamically


<p>Related posts:LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF  Gymjunnky asked: Gymjunnky.com Welcome to learn vb.net this is...</p>
<p>Related posts brought to you by Yet Another Related Posts Plugin.</p>


Related posts:<ol><li><a href='http://vbnet.codetuts.com/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php' rel='bookmark' title='Permanent Link: LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF'>LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF</a> <small> Gymjunnky asked: Gymjunnky.com Welcome to learn vb.net this is...</small></li></ol>

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
			<content:encoded><![CDATA[<div style="float:left; padding: 12px"></div>
<div><em><strong>Bhupinderjitbawa</strong> asked: </em><br/><br/>
<div class="cc_video"><object width="425" height="355"><param name="movie" value="http://www.youtube.com/v/Jdq7e8-4OdQ&#038;hl=en"></param><param name="wmode" value="transparent"></param><embed src="http://www.youtube.com/v/Jdq7e8-4OdQ&#038;hl=en" type="application/x-shockwave-flash" wmode="transparent" width="425" height="355"></embed></object></div>
<p><br/>add buttons to a form at run time or dynamically<br/><br/></div>


<p>Related posts:<ol><li><a href='http://vbnet.codetuts.com/learn-vbnet-2008-l3-password-protected-form-2-forms-if.php' rel='bookmark' title='Permanent Link: LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF'>LEARN VB.NET 2008 L3 PASSWORD PROTECTED FORM 2 FORMS &#038; IF</a> <small> Gymjunnky asked: Gymjunnky.com Welcome to learn vb.net this is...</small></li></ol></p>
<p>Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.</p><img src="http://feeds.feedburner.com/~r/CodetutsVbnet/~4/VK8R75ogq54" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://vbnet.codetuts.com/add-buttons-to-a-form-at-run-time-vbnet-tutorial.php/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://vbnet.codetuts.com/add-buttons-to-a-form-at-run-time-vbnet-tutorial.php</feedburner:origLink></item>
	</channel>
</rss>
