<?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>JD Site Care &#187; Visual Basic</title>
	<atom:link href="http://jdsitecare.com/category/trunk/visual-basic-tutorials/feed/" rel="self" type="application/rss+xml" />
	<link>http://jdsitecare.com</link>
	<description>Installing Scripts for You</description>
	<lastBuildDate>Sat, 04 Sep 2010 22:59:47 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>New Forms programmatic</title>
		<link>http://jdsitecare.com/new-forms-programmatic/</link>
		<comments>http://jdsitecare.com/new-forms-programmatic/#comments</comments>
		<pubDate>Fri, 09 Jul 2010 04:25:19 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[module]]></category>
		<category><![CDATA[new form]]></category>
		<category><![CDATA[programatic controls]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=399</guid>
		<description><![CDATA[In some cases it would be nice to have our own type of message box to display results. For example, if you are creating a contact management system and a record has been saved successfully you would want to display the success message. Now our project may not have any use in having another form [...]]]></description>
			<content:encoded><![CDATA[<p>In some cases it would be nice to have our own type of message box to display results.<br />
For example, if you are creating a contact management system and a record has been saved successfully you would want to display the success message.<br />
Now our project may not have any use in having another form created and displayed within our project so one approach we can take is to create and show the form only when needed.</p>
<h3>Creating Our Module Structure</h3>
<ul>
<li>From your solution explorer right click on your project name</li>
<li>Click Add =&gt; New Folder</li>
<li>Name it anything you want, i named mine Modules</li>
<li>Right Click on the Modules folder or whatever you named it and choose Add =&gt; Module&#8230;</li>
<li>Name it whatever you want, i just named mine&#8221;Added&#8221; without the double quotes</li>
</ul>
<div id="attachment_400" class="wp-caption alignnone" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/07/Modules.png"><img class="size-medium wp-image-400 " title="Modules" src="http://jdsitecare.com/wp-content/uploads/2010/07/Modules-300x206.png" alt="" width="300" height="206" /></a><p class="wp-caption-text">New Module</p></div>
<p>Once you click Add, your new Module should be created and should look like this</p>
<div id="attachment_401" class="wp-caption alignnone" style="width: 310px"><a href="http://jdsitecare.com/wp-content/uploads/2010/07/Module_Added.png"><img class="size-medium wp-image-401 " title="Module_Added" src="http://jdsitecare.com/wp-content/uploads/2010/07/Module_Added-300x48.png" alt="" width="300" height="48" /></a><p class="wp-caption-text">New Module File</p></div>
<p>Now that we have our Empty Module created the first thing we need to do is add a new Method.<br />
Within our Method will contain the code we want to execute when we call that method, so to create the method insert this line of code between the Module End Module block</p>
<p><code>Public Sub MsgAdded()</code></p>
<p>End Sub</p>
<p>MsgAdded is the method we will call on our submission from whatever form we want.<br />
The next thing we need to do is create a new form instance, this will be the form that will be displayed when we call it.<br />
Remember, this form will not be added to our project.<br />
<code><br />
Dim AddedMessage As New Form</code></p>
<p>Now that we have added a declaration as a new form we now need to set some properties for that form, so lets do that.<br />
<code><br />
AddedMessage.Name = "FormMessage"<br />
AddedMessage.Text = "Contact Added"<br />
AddedMessage.Size = New Size(313, 123)<br />
AddedMessage.FormBorderStyle = FormBorderStyle.FixedDialog<br />
AddedMessage.StartPosition = FormStartPosition.CenterScreen<br />
AddedMessage.MinimizeBox = False<br />
AddedMessage.MaximizeBox = False<br />
AddedMessage.BackColor = Color.White<br />
AddedMessage.ShowIcon = False<br />
AddedMessage.Show()<br />
AddedMessage.TopMost = True</code></p>
<p>Let me explain what these properties are and why they are set.</p>
<table class="style1" cellpadding="5" width="100%">
<tbody>
<tr>
<td class="style2" align="center" valign="top"><img src="http://jdsitecare.com/wp-content/uploads/2010/07/properties.gif" alt="" /></td>
<td align="center" valign="top"><strong>VALUES</strong></td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.Name</code></td>
<td align="left">Identifies the control by the Name property</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.Text</code></td>
<td align="left">The text that is displayed in the title bar</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.Size</code></td>
<td align="left">Over rides the default form size, if not set, default size will be initiated</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.FormBorderStyle</code></td>
<td align="left">Sets the Border style of the fom</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.StartPosition</code></td>
<td align="left">Sets the positioning of the form when called</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.MinimizeBox</code></td>
<td align="left">Determines if the Minimize button is visible or not, Values are Boolean (True or<br />
False)</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.MaximizeBox</code></td>
<td align="left">Determines if the Maximize button is visible or not, Values are Boolean (True or<br />
False)</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.BackColor</code></td>
<td align="left">Sets the background color of the form</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.ShowIcon</code></td>
<td align="left">Determines weather to show the icon in the title bar or not, Values are<br />
Boolean(True or False)</td>
</tr>
<tr>
<td class="style3" align="left"><code>AddedMessage.TopMost</code></td>
<td align="left">Determines if the form should always remain over top of other windows</td>
</tr>
</tbody>
</table>
<p>Our new form is now set and can now be called by calling <code>MsgAdded()</code></p>
<p>Now lets go a head and create our message to be displayed.<br />
We are just going to use a Label control, and we are going to create this essentially the same way we did the form.<br />
The first thing we need to do is create our Label to hold our message.<br />
Insert this below <code>AddedMessage.TopMost = True</code></p>
<p><code>Dim MessageLabel As New Label</code><br />
Now we need to set some properties of our label.</p>
<p><code><br />
MessageLabel.Name = "LabelMessage"<br />
MessageLabel.Text = "Contact Has Been Saved Successfully"<br />
MessageLabel.Width = AddedMessage.Width<br />
MessageLabel.Location = New Point(55, 41)</code></p>
<p>Now that our label message has been created we have to tell the form to add the label to the form.<br />
Under <code>MessageLabel.Location = New Point(55, 41</code> insert this</p>
<p><code>AddedMessage.Controls.Add(MessageLabel)</code></p>
<p>Now when we call the new form, the form will add the Label control.<br />
Remember, <code>MessageLabel</code> is the name of the label we created.<br />
Anytime you add controls to a form this way you need to specify the <strong>Name</strong> of the control you want to be added inside the <code>Controls.Add(ControlName)</code> method.</p>
<p>So far we have accomplished the following tasks</p>
<ol>
<li>Created a new Form</li>
<li>Set properties to our new form</li>
<li>Created a message that will be stored in a label control</li>
<li>Set the properties of the Label control</li>
<li>Told our new form to add the Label control</li>
</ol>
<p>The final task we need to is trigger a event to call our new form, this part is pretty easy and it can be used on any form you have in your project.</p>
<ul>
<li>Open your Form1</li>
<li>Drag a button on to your form</li>
<li>Double click on the button to create a Button1_Click event</li>
<li>Type in the following code</li>
<li><code>MsgAdded()</code></li>
</ul>
<p>Run the application (F5) or click the little Green Play Button at the top<br />
When you click the button you will see your new form appear.</p>
<p>This concludes another Visual Basic tutorial.<br />
I hope that you find use of this tutorial and can use this within your own project(s)</p>
<fb:like href=http://jdsitecare.com/new-forms-programmatic/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic&amp;bodytext=In%20some%20cases%20it%20would%20be%20nice%20to%20have%20our%20own%20type%20of%20message%20box%20to%20display%20results.%0D%0AFor%20example%2C%20if%20you%20are%20creating%20a%20contact%20management%20system%20and%20a%20record%20has%20been%20saved%20successfully%20you%20would%20want%20to%20display%20the%20success%20message.%0D%0ANow%20our%20proj" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic&amp;notes=In%20some%20cases%20it%20would%20be%20nice%20to%20have%20our%20own%20type%20of%20message%20box%20to%20display%20results.%0D%0AFor%20example%2C%20if%20you%20are%20creating%20a%20contact%20management%20system%20and%20a%20record%20has%20been%20saved%20successfully%20you%20would%20want%20to%20display%20the%20success%20message.%0D%0ANow%20our%20proj" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;t=New%20Forms%20programmatic" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic&amp;annotation=In%20some%20cases%20it%20would%20be%20nice%20to%20have%20our%20own%20type%20of%20message%20box%20to%20display%20results.%0D%0AFor%20example%2C%20if%20you%20are%20creating%20a%20contact%20management%20system%20and%20a%20record%20has%20been%20saved%20successfully%20you%20would%20want%20to%20display%20the%20success%20message.%0D%0ANow%20our%20proj" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fnew-forms-programmatic%2F&amp;title=New%20Forms%20programmatic" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/new-forms-programmatic/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Connecting VB To Web Host</title>
		<link>http://jdsitecare.com/connecting-vb-to-web-host/</link>
		<comments>http://jdsitecare.com/connecting-vb-to-web-host/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 18:28:41 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[application]]></category>
		<category><![CDATA[configuration]]></category>
		<category><![CDATA[connection string]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[Hosting]]></category>
		<category><![CDATA[hosting server]]></category>
		<category><![CDATA[server]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[sql server management studio]]></category>
		<category><![CDATA[visual  basic]]></category>
		<category><![CDATA[visual studio]]></category>
		<category><![CDATA[winhost]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=271</guid>
		<description><![CDATA[In this tutorial i will be showing you how to connect a data application to a web server. This will allow your end users to work with your application data in whatever way you desire. Before i get started i should point out that some hosts may work differently when attaching your databases. Some may [...]]]></description>
			<content:encoded><![CDATA[<p>In this tutorial i will be showing you how to connect a data application to a web server.<br />
This will allow your end users to work with your application data in whatever way you desire.<br />
Before i get started i should point out that some hosts may work differently when attaching your databases.<br />
Some may require you to upload the database itself to the server and some may allow connection via SQL Server Management Studio.<br />
In this tutorial i will be using <span style="color: #008000;"><strong>Winhost</strong></span> as the hosting server.<br />
Visit www.winhost.com to get more information and to purchase your hosting package.<br />
I&#8217;m using the Winhost Max package ($9.95/Mo).</p>
<p><span style="color: #800000;"><em><strong>Note!<br />
</strong></em><em>This tutorial was created to show users how to connect their desktop  application to a server hosted at winhost.com<br />
This tutorial does not cover the uploading proccess of your application.<br />
The uploading proccess can be done using the Click Once feature built in  to Visual Studio</em></span></p>
<h2>Something Useful</h2>
<p>This tutorial uses the following requirements and they should be used by you to ensure it will work correctly.</p>
<ul>
<li>Visual Studio 2010</li>
<li>.NET Framework 4.0</li>
<li>SQL Server Management Studio 2008</li>
</ul>
<p>With that out of the way now, lets get started on the tutorial.</p>
<h1>Step 1 &#8211; Setting up the server to work with this</h1>
<p>Once you have your host created at Winhost navigate to the control panel and login<br />
After logging in click on Sites tab.<br />
You should now see a list of domains you have assigned to your account</p>
<p><a href="http://jdsitecare.com/wp-content/uploads/2010/06/Sites.png"><img class="aligncenter size-full wp-image-272" title="Sites" src="http://jdsitecare.com/wp-content/uploads/2010/06/Sites.png" alt="" width="489" height="113" /></a></p>
<p>Click on the Manage link and that will take you to the management section of that domain.<br />
This section allows you to configure your site.</p>
<p><a href="http://jdsitecare.com/wp-content/uploads/2010/06/site-info-and-tools.png"><img class="aligncenter size-full wp-image-275" title="site info and tools" src="http://jdsitecare.com/wp-content/uploads/2010/06/site-info-and-tools.png" alt="" width="515" height="344" /></a><a href="http://jdsitecare.com/wp-content/uploads/2010/06/site-info.png"><br />
</a>The first thing we are interested in is configuring the .NET framework we want the server to use.<br />
Click on the ASP.NET Version icon<br />
From the ASP.NET Framework Version dropdown list choose 4.0 than click Update.<br />
Now our server is ready to use applications created using the .NET Framework 4.0</p>
<p>There&#8217;s one more thing we need to set up&#8230;A database.<br />
Click on the MS SQL 2008 icon.<br />
Click the Add button.<br />
In the Database Name field type in the name of the database you want to create.<br />
You can type in any name you want.<br />
Now click Create.</p>
<p>Now you have your database set up, we can now minimize our web browser for now and load up Visual Studio.<br />
We will need to go back into our control panel once we&#8217;re done with our application to grab the details of our database.</p>
<h1>Step 2 &#8211; Creating your data application</h1>
<p>Once you have VS open you can go a head and create your application.<br />
Once your application is complete we will need to modify the Connection String in the app.config file.</p>
<h1>Step 3 &#8211; Modifying the App.config file</h1>
<p>Now that you have your application created we need to use the connection string that we were given when we created our database on Winhost.<br />
So go back to your control panel and go back to your MS SQL 2008.<br />
Click on the Manage link to manage the database.<br />
You should now see your database details, such as</p>
<ul>
<li>Server name</li>
<li>Database name</li>
<li>Database user etc.</li>
</ul>
<p><a href="http://jdsitecare.com/wp-content/uploads/2010/06/database-manage.png"><img class="aligncenter size-full wp-image-277" title="database manage" src="http://jdsitecare.com/wp-content/uploads/2010/06/database-manage.png" alt="" width="491" height="326" /></a></p>
<p>You need to grab the complete connection string</p>
<blockquote><p>&#8220;Data Source=???:???.winhost.com;Initial  Catalog=DB_8754_databasename;User  ID=DB_8754_databasename_user;Password=******;Integrated Security=False;&#8221;</p></blockquote>
<p>Jump back to your project and open the App.config file.<br />
You should see a connection string within the &lt;connectionStrings&gt; attribute.<br />
Replace everything after connectionString= with the connection string you coppied from your control panel.<br />
The complete connection string should look something like this</p>
<blockquote><p>connectionString=&#8221;Data Source=???.winhost.com;Initial Catalog=DB_8754_databasename;User ID=DB_8754_databasename_user;Password=password&#8221;<br />
providerName=&#8221;System.Data.SqlClient&#8221; /&gt;</p></blockquote>
<p>Now go a head and save your project.<br />
We are now ready to attach our database to the server.</p>
<h1>Step 4 &#8211; Attaching our database to the server</h1>
<p>In your Visual Studio click on the Server Explorer tab.<br />
You should see your database listed here.<br />
Right click on it and choose <strong>Publish To Provider</strong><br />
Your database should be selected by default, if it isn&#8217;t go a head and select it.<br />
Now you can click Next to choose a path where you want the script file to be generated to.<br />
You can now click Finish and it will start gether all the Objects.<br />
Once this is complete successfully you will see a .MDF.sql file wherever you told it to download to.<br />
The next thing we need to do is tell the server our database is being hosted on to use this database, so lets do that now.</p>
<ul>
<li>Open SQL Server Management Studio</li>
<li>In the Connect to Server dialog just click Cancel for now.</li>
<li>At the top click on File =&gt; Open =&gt; File</li>
<li>Browse for the .MDF.sql file you downloaded earlier.</li>
<li>You will now be asked to connect to a server.</li>
<li>Go back to your Winhost control panel =&gt; Site Manager =&gt; MSSQL 2008</li>
<li>Click on the Manage link beside your database</li>
<li>Copy the Database Server name and go back to SQL Server Management Studio and paste it in the Server Name field (See screenshot 1.1)</li>
<li>Go back to your control panel and grab the Database Username and paste that in to the Login field</li>
<li>Now put in your password (This is the same as your login password to the control panel)</li>
<li>Also make sure Authentication is set to SQL Server Authentication and click Connect</li>
<li>You will now see a list of queries. (See screenshot 1.2)</li>
<li>At the very very top of that window type in the following</li>
</ul>
<p>USE databaseName<br />
GO</p>
<ul>
<li>Now at the top, click on Execute</li>
<li>The command should be executed successfully</li>
</ul>
<div id="attachment_278" class="wp-caption aligncenter" style="width: 428px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/sql-connect.png"><img class="size-full wp-image-278" title="sql connect" src="http://jdsitecare.com/wp-content/uploads/2010/06/sql-connect.png" alt="" width="418" height="309" /></a><p class="wp-caption-text">Screen 1.1</p></div>
<div id="attachment_279" class="wp-caption aligncenter" style="width: 565px"><a href="http://jdsitecare.com/wp-content/uploads/2010/06/sql-query.png"><img class="size-full wp-image-279" title="sql query" src="http://jdsitecare.com/wp-content/uploads/2010/06/sql-query.png" alt="" width="555" height="254" /></a><p class="wp-caption-text">Screen 1.2</p></div>
<p>Your database is functional on your server and is now ready for use.<br />
Now if you go back to your VS =&gt; Server Explorer and you create a new database connection, you will now be able to interact with the database that&#8217;s on the server.<br />
When you make changes to the database they will be applied automatically on the server end.<br />
You can also do your Database Management from SQL Server Management Studio by connecting to it the same way we did previously.<br />
All that is left now is for you to upload your project to your server.<br />
I hope you enjoyed this tutorial and i hope it has helped you out in some way.</p>
<fb:like href=http://jdsitecare.com/connecting-vb-to-web-host/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fconnecting-vb-to-web-host%2F&amp;title=Connecting%20VB%20To%20Web%20Host&amp;bodytext=In%20this%20tutorial%20i%20will%20be%20showing%20you%20how%20to%20connect%20a%20data%20application%20to%20a%20web%20server.%0D%0AThis%20will%20allow%20your%20end%20users%20to%20work%20with%20your%20application%20data%20in%20whatever%20way%20you%20desire.%0D%0ABefore%20i%20get%20started%20i%20should%20point%20out%20that%20some%20hosts%20may%20work" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fconnecting-vb-to-web-host%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fconnecting-vb-to-web-host%2F&amp;title=Connecting%20VB%20To%20Web%20Host&amp;notes=In%20this%20tutorial%20i%20will%20be%20showing%20you%20how%20to%20connect%20a%20data%20application%20to%20a%20web%20server.%0D%0AThis%20will%20allow%20your%20end%20users%20to%20work%20with%20your%20application%20data%20in%20whatever%20way%20you%20desire.%0D%0ABefore%20i%20get%20started%20i%20should%20point%20out%20that%20some%20hosts%20may%20work" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fconnecting-vb-to-web-host%2F&amp;t=Connecting%20VB%20To%20Web%20Host" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fconnecting-vb-to-web-host%2F&amp;title=Connecting%20VB%20To%20Web%20Host" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fconnecting-vb-to-web-host%2F&amp;title=Connecting%20VB%20To%20Web%20Host&amp;annotation=In%20this%20tutorial%20i%20will%20be%20showing%20you%20how%20to%20connect%20a%20data%20application%20to%20a%20web%20server.%0D%0AThis%20will%20allow%20your%20end%20users%20to%20work%20with%20your%20application%20data%20in%20whatever%20way%20you%20desire.%0D%0ABefore%20i%20get%20started%20i%20should%20point%20out%20that%20some%20hosts%20may%20work" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fconnecting-vb-to-web-host%2F&amp;title=Connecting%20VB%20To%20Web%20Host" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/connecting-vb-to-web-host/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Visual Basic Database Relationships PT2</title>
		<link>http://jdsitecare.com/visual-basic-database-relationships-pt2/</link>
		<comments>http://jdsitecare.com/visual-basic-database-relationships-pt2/#comments</comments>
		<pubDate>Sat, 15 May 2010 15:52:51 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[relationships]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=242</guid>
		<description><![CDATA[In this video you will learn how to use the data by doing a couple examples. I will explain what to look at before dragging the gridview/details view on to your form. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>In this video you will learn how to use the data by doing a couple examples.<br />
I will explain what to look at before dragging the gridview/details view on to your form.</p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/uKVJOPdgloA&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/uKVJOPdgloA&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/visual-basic-database-relationships-pt2/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt2%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT2&amp;bodytext=In%20this%20video%20you%20will%20learn%20how%20to%20use%20the%20data%20by%20doing%20a%20couple%20examples.%0D%0AI%20will%20explain%20what%20to%20look%20at%20before%20dragging%20the%20gridview%2Fdetails%20view%20on%20to%20your%20form.%0D%0A" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt2%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt2%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT2&amp;notes=In%20this%20video%20you%20will%20learn%20how%20to%20use%20the%20data%20by%20doing%20a%20couple%20examples.%0D%0AI%20will%20explain%20what%20to%20look%20at%20before%20dragging%20the%20gridview%2Fdetails%20view%20on%20to%20your%20form.%0D%0A" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt2%2F&amp;t=Visual%20Basic%20Database%20Relationships%20PT2" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt2%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT2" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt2%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT2&amp;annotation=In%20this%20video%20you%20will%20learn%20how%20to%20use%20the%20data%20by%20doing%20a%20couple%20examples.%0D%0AI%20will%20explain%20what%20to%20look%20at%20before%20dragging%20the%20gridview%2Fdetails%20view%20on%20to%20your%20form.%0D%0A" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt2%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT2" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/visual-basic-database-relationships-pt2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Basic Database Relationships PT1</title>
		<link>http://jdsitecare.com/visual-basic-database-relationships-pt1/</link>
		<comments>http://jdsitecare.com/visual-basic-database-relationships-pt1/#comments</comments>
		<pubDate>Sat, 15 May 2010 15:49:59 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[relationships]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=241</guid>
		<description><![CDATA[This 2 part series will focus on creating a relational database. I will be creating a employee type of database that&#8217;s going to consist of 2 tables. What i will be doing is applying a relationship between both tables. What this will do is in the end will allow us to create 1 record that [...]]]></description>
			<content:encoded><![CDATA[<p>This 2 part series will focus on creating a relational database.<br />
I will be creating a employee type of database that&#8217;s going to consist of 2 tables.<br />
What i will be doing is applying a relationship between both tables.<br />
What this will do is in the end will allow us to create 1 record that has multiple records of days worked and days haven&#8217;t worked.<br />
We will be able to see multiple weeks under 1 record.<br />
This video will just show how to create the database and apply the relationship.</p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/8Ar12QnUwhs&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/8Ar12QnUwhs&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/visual-basic-database-relationships-pt1/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt1%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT1&amp;bodytext=This%202%20part%20series%20will%20focus%20on%20creating%20a%20relational%20database.%0D%0AI%20will%20be%20creating%20a%20employee%20type%20of%20database%20that%27s%20going%20to%20consist%20of%202%20tables.%0D%0AWhat%20i%20will%20be%20doing%20is%20applying%20a%20relationship%20between%20both%20tables.%0D%0AWhat%20this%20will%20do%20is%20in%20the%20e" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt1%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt1%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT1&amp;notes=This%202%20part%20series%20will%20focus%20on%20creating%20a%20relational%20database.%0D%0AI%20will%20be%20creating%20a%20employee%20type%20of%20database%20that%27s%20going%20to%20consist%20of%202%20tables.%0D%0AWhat%20i%20will%20be%20doing%20is%20applying%20a%20relationship%20between%20both%20tables.%0D%0AWhat%20this%20will%20do%20is%20in%20the%20e" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt1%2F&amp;t=Visual%20Basic%20Database%20Relationships%20PT1" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt1%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT1" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt1%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT1&amp;annotation=This%202%20part%20series%20will%20focus%20on%20creating%20a%20relational%20database.%0D%0AI%20will%20be%20creating%20a%20employee%20type%20of%20database%20that%27s%20going%20to%20consist%20of%202%20tables.%0D%0AWhat%20i%20will%20be%20doing%20is%20applying%20a%20relationship%20between%20both%20tables.%0D%0AWhat%20this%20will%20do%20is%20in%20the%20e" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-database-relationships-pt1%2F&amp;title=Visual%20Basic%20Database%20Relationships%20PT1" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/visual-basic-database-relationships-pt1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>VB Borderless, Dragable, transparent form</title>
		<link>http://jdsitecare.com/vb-borderless-dragable-transparent-form/</link>
		<comments>http://jdsitecare.com/vb-borderless-dragable-transparent-form/#comments</comments>
		<pubDate>Fri, 07 May 2010 05:48:30 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[borderless]]></category>
		<category><![CDATA[forms]]></category>
		<category><![CDATA[long video]]></category>
		<category><![CDATA[transparent]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=229</guid>
		<description><![CDATA[In this video i will just be creating a project that may or may not be useful to you in your projects, but some of the techniques might be. The project we’re going to build is a borderless form with our custom title bar with some dragging functionality so we can drag our form. Also [...]]]></description>
			<content:encoded><![CDATA[<p>In this video i will just be creating a project that may or may not be useful to you in your projects, but some of the techniques might be.<br />
The project we’re going to build is a borderless form with our custom title bar with some dragging functionality so we can drag our form.<br />
Also for kicks i thought i would throw in a couple more sidekicks, 1 being when you click to drag the form it will have a transparent effect and when you click up the transparency will be 0 (No transparency).<br />
2, adding a pin up, pin down effect, so no matter the location of our form, when we pin our form down it will go into transparent mode with a little visibility so you can see the form still and the form will be docked to the top left of your screen.<br />
<strong>Length: 29min 04 sec</strong></p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="600" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://blip.tv/play/hZYdgcTxEgA%2Em4v" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="600" height="385" src="http://blip.tv/play/hZYdgcTxEgA%2Em4v" allowfullscreen="true"></embed></object></p>
<p><strong>Other Formats | <a href="http://a38.video2.blip.tv/6130003321272/Vbprogrammer-MoveableDragableTransparency165.mp4?bri=4.4&amp;brs=192" target="_blank">MP4</a> | </strong><strong><a href="http://blip.tv/file/get/Vbprogrammer-MoveableDragableTransparency857.flv">FLV</a></strong></p>
<fb:like href=http://jdsitecare.com/vb-borderless-dragable-transparent-form/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fvb-borderless-dragable-transparent-form%2F&amp;title=VB%20Borderless%2C%20Dragable%2C%20transparent%20form&amp;bodytext=In%20this%20video%20i%20will%20just%20be%20creating%20a%20project%20that%20may%20or%20may%20not%20be%20useful%20to%20you%20in%20your%20projects%2C%20but%20some%20of%20the%20techniques%20might%20be.%0D%0AThe%20project%20we%E2%80%99re%20going%20to%20build%20is%20a%20borderless%20form%20with%20our%20custom%20title%20bar%20with%20some%20dragging%20function" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fvb-borderless-dragable-transparent-form%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fvb-borderless-dragable-transparent-form%2F&amp;title=VB%20Borderless%2C%20Dragable%2C%20transparent%20form&amp;notes=In%20this%20video%20i%20will%20just%20be%20creating%20a%20project%20that%20may%20or%20may%20not%20be%20useful%20to%20you%20in%20your%20projects%2C%20but%20some%20of%20the%20techniques%20might%20be.%0D%0AThe%20project%20we%E2%80%99re%20going%20to%20build%20is%20a%20borderless%20form%20with%20our%20custom%20title%20bar%20with%20some%20dragging%20function" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fvb-borderless-dragable-transparent-form%2F&amp;t=VB%20Borderless%2C%20Dragable%2C%20transparent%20form" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fvb-borderless-dragable-transparent-form%2F&amp;title=VB%20Borderless%2C%20Dragable%2C%20transparent%20form" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fvb-borderless-dragable-transparent-form%2F&amp;title=VB%20Borderless%2C%20Dragable%2C%20transparent%20form&amp;annotation=In%20this%20video%20i%20will%20just%20be%20creating%20a%20project%20that%20may%20or%20may%20not%20be%20useful%20to%20you%20in%20your%20projects%2C%20but%20some%20of%20the%20techniques%20might%20be.%0D%0AThe%20project%20we%E2%80%99re%20going%20to%20build%20is%20a%20borderless%20form%20with%20our%20custom%20title%20bar%20with%20some%20dragging%20function" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fvb-borderless-dragable-transparent-form%2F&amp;title=VB%20Borderless%2C%20Dragable%2C%20transparent%20form" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/vb-borderless-dragable-transparent-form/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://a38.video2.blip.tv/6130003321272/Vbprogrammer-MoveableDragableTransparency165.mp4?bri=4.4&amp;amp" length="30671840" type="video/mp4" />
<enclosure url="http://blip.tv/file/get/Vbprogrammer-MoveableDragableTransparency857.flv" length="139171445" type="video/x-flv" />
		</item>
		<item>
		<title>Visual Basic Bottom Bar pt2</title>
		<link>http://jdsitecare.com/visual-basic-bottom-bar-pt2/</link>
		<comments>http://jdsitecare.com/visual-basic-bottom-bar-pt2/#comments</comments>
		<pubDate>Fri, 07 May 2010 03:07:57 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[bottom bar]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=221</guid>
		<description><![CDATA[The last part of this video we&#8217;re just going to use a color dialog which will allow us to change the color of our bottom bar. The intent to this and the previous post is to show how to place something at the bottom by setting the location, it&#8217;s not intended to be a &#8220;How [...]]]></description>
			<content:encoded><![CDATA[<p>The last part of this video we&#8217;re just going to use a color dialog which will allow us to change the color of our bottom bar. The intent to this and the previous post is to show how to place something at the bottom by setting the location, it&#8217;s not intended to be a &#8220;How to add color to your taskbar&#8221; even though it does look kinda neat.<br />
<code> </code></p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/uz0bwItcFwE&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/uz0bwItcFwE&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/visual-basic-bottom-bar-pt2/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt2%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt2&amp;bodytext=The%20last%20part%20of%20this%20video%20we%27re%20just%20going%20to%20use%20a%20color%20dialog%20which%20will%20allow%20us%20to%20change%20the%20color%20of%20our%20bottom%20bar.%20The%20intent%20to%20this%20and%20the%20previous%20post%20is%20to%20show%20how%20to%20place%20something%20at%20the%20bottom%20by%20setting%20the%20location%2C%20it%27s%20not%20i" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt2%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt2%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt2&amp;notes=The%20last%20part%20of%20this%20video%20we%27re%20just%20going%20to%20use%20a%20color%20dialog%20which%20will%20allow%20us%20to%20change%20the%20color%20of%20our%20bottom%20bar.%20The%20intent%20to%20this%20and%20the%20previous%20post%20is%20to%20show%20how%20to%20place%20something%20at%20the%20bottom%20by%20setting%20the%20location%2C%20it%27s%20not%20i" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt2%2F&amp;t=Visual%20Basic%20Bottom%20Bar%20pt2" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt2%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt2" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt2%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt2&amp;annotation=The%20last%20part%20of%20this%20video%20we%27re%20just%20going%20to%20use%20a%20color%20dialog%20which%20will%20allow%20us%20to%20change%20the%20color%20of%20our%20bottom%20bar.%20The%20intent%20to%20this%20and%20the%20previous%20post%20is%20to%20show%20how%20to%20place%20something%20at%20the%20bottom%20by%20setting%20the%20location%2C%20it%27s%20not%20i" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt2%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt2" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/visual-basic-bottom-bar-pt2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Visual Basic Bottom Bar pt1</title>
		<link>http://jdsitecare.com/visual-basic-bottom-bar-pt1/</link>
		<comments>http://jdsitecare.com/visual-basic-bottom-bar-pt1/#comments</comments>
		<pubDate>Fri, 07 May 2010 03:05:24 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[bar]]></category>
		<category><![CDATA[location]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[video]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=220</guid>
		<description><![CDATA[This is just something i learned and thought i&#8217;d share it. I will be showing you how you can create a bar and have it position to the bottom of your screen no matter the resolution. I don&#8217;t make the form the height of my screen&#8230;just watch it and you will see :=) Share and [...]]]></description>
			<content:encoded><![CDATA[<p>This is just something i learned and thought i&#8217;d share it. I will be showing you how you can create a bar and have it position to the bottom of your screen no matter the resolution. I don&#8217;t make the form the height of my screen&#8230;just watch it and you will see :=)<br />
<code> </code></p>
<div style="border: 5px double #021939; background-color: #597791; padding: 8px; width: 480px; height: 385px;"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="480" height="385" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/GvIEEm89iKk&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="480" height="385" src="http://www.youtube.com/v/GvIEEm89iKk&amp;hl=en_US&amp;fs=1&amp;rel=0&amp;color1=0x2b405b&amp;color2=0x6b8ab6" allowscriptaccess="always" allowfullscreen="true"></embed></object></div>
<fb:like href=http://jdsitecare.com/visual-basic-bottom-bar-pt1/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt1%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt1&amp;bodytext=This%20is%20just%20something%20i%20learned%20and%20thought%20i%27d%20share%20it.%20I%20will%20be%20showing%20you%20how%20you%20can%20create%20a%20bar%20and%20have%20it%20position%20to%20the%20bottom%20of%20your%20screen%20no%20matter%20the%20resolution.%20I%20don%27t%20make%20the%20form%20the%20height%20of%20my%20screen...just%20watch%20it%20and%20yo" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt1%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt1%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt1&amp;notes=This%20is%20just%20something%20i%20learned%20and%20thought%20i%27d%20share%20it.%20I%20will%20be%20showing%20you%20how%20you%20can%20create%20a%20bar%20and%20have%20it%20position%20to%20the%20bottom%20of%20your%20screen%20no%20matter%20the%20resolution.%20I%20don%27t%20make%20the%20form%20the%20height%20of%20my%20screen...just%20watch%20it%20and%20yo" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt1%2F&amp;t=Visual%20Basic%20Bottom%20Bar%20pt1" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt1%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt1" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt1%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt1&amp;annotation=This%20is%20just%20something%20i%20learned%20and%20thought%20i%27d%20share%20it.%20I%20will%20be%20showing%20you%20how%20you%20can%20create%20a%20bar%20and%20have%20it%20position%20to%20the%20bottom%20of%20your%20screen%20no%20matter%20the%20resolution.%20I%20don%27t%20make%20the%20form%20the%20height%20of%20my%20screen...just%20watch%20it%20and%20yo" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fvisual-basic-bottom-bar-pt1%2F&amp;title=Visual%20Basic%20Bottom%20Bar%20pt1" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/visual-basic-bottom-bar-pt1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add a right click menu</title>
		<link>http://jdsitecare.com/add-a-right-click-menu/</link>
		<comments>http://jdsitecare.com/add-a-right-click-menu/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 02:57:53 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=157</guid>
		<description><![CDATA[In this video i show you how to apply a right click menu to your applications. I perform 1 demonstration on how to apply it to a form as well as applying it to a certain control. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p><span>In this video i show you how to apply a right click menu to your applications.<br />
I perform 1 demonstration on how to apply it to a form as well as applying it to a certain control. </span></p>
<p style="text-align: center;"><span><p><a href="http://jdsitecare.com/add-a-right-click-menu/"><em>Click here to view the embedded video.</em></a></p><br />
</span></p>
<fb:like href=http://jdsitecare.com/add-a-right-click-menu/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fadd-a-right-click-menu%2F&amp;title=Add%20a%20right%20click%20menu&amp;bodytext=In%20this%20video%20i%20show%20you%20how%20to%20apply%20a%20right%20click%20menu%20to%20your%20applications.%0D%0AI%20perform%201%20demonstration%20on%20how%20to%20apply%20it%20to%20a%20form%20as%20well%20as%20applying%20it%20to%20a%20certain%20control.%20%0D%0A%0D%0A" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fadd-a-right-click-menu%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fadd-a-right-click-menu%2F&amp;title=Add%20a%20right%20click%20menu&amp;notes=In%20this%20video%20i%20show%20you%20how%20to%20apply%20a%20right%20click%20menu%20to%20your%20applications.%0D%0AI%20perform%201%20demonstration%20on%20how%20to%20apply%20it%20to%20a%20form%20as%20well%20as%20applying%20it%20to%20a%20certain%20control.%20%0D%0A%0D%0A" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fadd-a-right-click-menu%2F&amp;t=Add%20a%20right%20click%20menu" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fadd-a-right-click-menu%2F&amp;title=Add%20a%20right%20click%20menu" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fadd-a-right-click-menu%2F&amp;title=Add%20a%20right%20click%20menu&amp;annotation=In%20this%20video%20i%20show%20you%20how%20to%20apply%20a%20right%20click%20menu%20to%20your%20applications.%0D%0AI%20perform%201%20demonstration%20on%20how%20to%20apply%20it%20to%20a%20form%20as%20well%20as%20applying%20it%20to%20a%20certain%20control.%20%0D%0A%0D%0A" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fadd-a-right-click-menu%2F&amp;title=Add%20a%20right%20click%20menu" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/add-a-right-click-menu/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Advanced Progress Bar</title>
		<link>http://jdsitecare.com/advanced-progress-bar/</link>
		<comments>http://jdsitecare.com/advanced-progress-bar/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 03:19:05 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[coding]]></category>
		<category><![CDATA[percentage]]></category>
		<category><![CDATA[programming]]></category>
		<category><![CDATA[progress  bar]]></category>
		<category><![CDATA[value]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=152</guid>
		<description><![CDATA[In this video you will see how you can add 2 progress bars and 2 labels to your form. The labels read the value of the progress bars as they increment. After the first progress bar loads 100% the second one will start, when the second one is complete the form will close&#8230;watch it to [...]]]></description>
			<content:encoded><![CDATA[<p><span>In this video you will see how you can add 2 progress bars and 2 labels to your form.<br />
The labels read the value of the progress bars as they increment.<br />
After the first progress bar loads 100% the second one will start, when the second one is complete the form will close&#8230;watch it to see what i mean. </span></p>
<p style="text-align: center;"><span><p><a href="http://jdsitecare.com/advanced-progress-bar/"><em>Click here to view the embedded video.</em></a></p><br />
</span></p>
<fb:like href=http://jdsitecare.com/advanced-progress-bar/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fadvanced-progress-bar%2F&amp;title=Advanced%20Progress%20Bar&amp;bodytext=In%20this%20video%20you%20will%20see%20how%20you%20can%20add%202%20progress%20bars%20and%202%20labels%20to%20your%20form.%0D%0AThe%20labels%20read%20the%20value%20of%20the%20progress%20bars%20as%20they%20increment.%0D%0AAfter%20the%20first%20progress%20bar%20loads%20100%25%20the%20second%20one%20will%20start%2C%20when%20the%20second%20one%20is%20comple" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fadvanced-progress-bar%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fadvanced-progress-bar%2F&amp;title=Advanced%20Progress%20Bar&amp;notes=In%20this%20video%20you%20will%20see%20how%20you%20can%20add%202%20progress%20bars%20and%202%20labels%20to%20your%20form.%0D%0AThe%20labels%20read%20the%20value%20of%20the%20progress%20bars%20as%20they%20increment.%0D%0AAfter%20the%20first%20progress%20bar%20loads%20100%25%20the%20second%20one%20will%20start%2C%20when%20the%20second%20one%20is%20comple" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fadvanced-progress-bar%2F&amp;t=Advanced%20Progress%20Bar" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fadvanced-progress-bar%2F&amp;title=Advanced%20Progress%20Bar" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fadvanced-progress-bar%2F&amp;title=Advanced%20Progress%20Bar&amp;annotation=In%20this%20video%20you%20will%20see%20how%20you%20can%20add%202%20progress%20bars%20and%202%20labels%20to%20your%20form.%0D%0AThe%20labels%20read%20the%20value%20of%20the%20progress%20bars%20as%20they%20increment.%0D%0AAfter%20the%20first%20progress%20bar%20loads%20100%25%20the%20second%20one%20will%20start%2C%20when%20the%20second%20one%20is%20comple" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fadvanced-progress-bar%2F&amp;title=Advanced%20Progress%20Bar" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/advanced-progress-bar/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Network Connectivity Status</title>
		<link>http://jdsitecare.com/network-connectivity-status/</link>
		<comments>http://jdsitecare.com/network-connectivity-status/#comments</comments>
		<pubDate>Thu, 16 Apr 2009 03:14:16 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[Visual Basic]]></category>
		<category><![CDATA[connection]]></category>
		<category><![CDATA[connectivity]]></category>
		<category><![CDATA[network]]></category>
		<category><![CDATA[program]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[visual  basic]]></category>

		<guid isPermaLink="false">http://jdsitecare.com/?p=151</guid>
		<description><![CDATA[In this video i will show you how you can display your network status to your project(s) Network connectivity status as in it will tell you if you are connected to the internet or not. Share and Enjoy:]]></description>
			<content:encoded><![CDATA[<p>In this video i will show you how you can display your network status to your project(s)<br />
Network connectivity status as in it will tell you if you are connected to the internet or not.</p>
<p style="text-align: center;"><p><a href="http://jdsitecare.com/network-connectivity-status/"><em>Click here to view the embedded video.</em></a></p></p>
<fb:like href=http://jdsitecare.com/network-connectivity-status/ font=></fb:like>


Share and Enjoy:


	<a rel="nofollow"  href="http://digg.com/submit?phase=2&amp;url=http%3A%2F%2Fjdsitecare.com%2Fnetwork-connectivity-status%2F&amp;title=Network%20Connectivity%20Status&amp;bodytext=In%20this%20video%20i%20will%20show%20you%20how%20you%20can%20display%20your%20network%20status%20to%20your%20project%28s%29%0D%0ANetwork%20connectivity%20status%20as%20in%20it%20will%20tell%20you%20if%20you%20are%20connected%20to%20the%20internet%20or%20not.%0D%0A" title="Digg"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/digg.png" title="Digg" alt="Digg" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://sphinn.com/index.php?c=post&amp;m=submit&amp;link=http%3A%2F%2Fjdsitecare.com%2Fnetwork-connectivity-status%2F" title="Sphinn"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/sphinn.png" title="Sphinn" alt="Sphinn" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://delicious.com/post?url=http%3A%2F%2Fjdsitecare.com%2Fnetwork-connectivity-status%2F&amp;title=Network%20Connectivity%20Status&amp;notes=In%20this%20video%20i%20will%20show%20you%20how%20you%20can%20display%20your%20network%20status%20to%20your%20project%28s%29%0D%0ANetwork%20connectivity%20status%20as%20in%20it%20will%20tell%20you%20if%20you%20are%20connected%20to%20the%20internet%20or%20not.%0D%0A" title="del.icio.us"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/delicious.png" title="del.icio.us" alt="del.icio.us" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.facebook.com/share.php?u=http%3A%2F%2Fjdsitecare.com%2Fnetwork-connectivity-status%2F&amp;t=Network%20Connectivity%20Status" title="Facebook"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/facebook.png" title="Facebook" alt="Facebook" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.mixx.com/submit?page_url=http%3A%2F%2Fjdsitecare.com%2Fnetwork-connectivity-status%2F&amp;title=Network%20Connectivity%20Status" title="Mixx"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/mixx.png" title="Mixx" alt="Mixx" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.google.com/bookmarks/mark?op=edit&amp;bkmk=http%3A%2F%2Fjdsitecare.com%2Fnetwork-connectivity-status%2F&amp;title=Network%20Connectivity%20Status&amp;annotation=In%20this%20video%20i%20will%20show%20you%20how%20you%20can%20display%20your%20network%20status%20to%20your%20project%28s%29%0D%0ANetwork%20connectivity%20status%20as%20in%20it%20will%20tell%20you%20if%20you%20are%20connected%20to%20the%20internet%20or%20not.%0D%0A" title="Google Bookmarks"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/googlebookmark.png" title="Google Bookmarks" alt="Google Bookmarks" class="sociable-hovers" /></a>
	<a rel="nofollow"  href="http://www.stumbleupon.com/submit?url=http%3A%2F%2Fjdsitecare.com%2Fnetwork-connectivity-status%2F&amp;title=Network%20Connectivity%20Status" title="StumbleUpon"><img src="http://jdsitecare.com/wp-content/plugins/sociable/images/stumbleupon.png" title="StumbleUpon" alt="StumbleUpon" class="sociable-hovers" /></a>


<br/><br/>]]></content:encoded>
			<wfw:commentRss>http://jdsitecare.com/network-connectivity-status/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
