<?xml version="1.0" encoding="UTF-8"?>
<!-- generator="wordpress/2.2.2" -->
<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/"
	>

<channel>
	<title></title>
	<link>http://seoroot.com/blog</link>
	<description></description>
	<pubDate>Thu, 15 Jul 2010 04:37:17 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.2.2</generator>
	<language>en</language>
			<item>
		<title>Fetch Weather Data from Google Server on VB</title>
		<link>http://seoroot.com/blog/tips-and-howtos/fetch-weather-data-from-google-server.html</link>
		<comments>http://seoroot.com/blog/tips-and-howtos/fetch-weather-data-from-google-server.html#comments</comments>
		<pubDate>Thu, 15 Jul 2010 04:29:19 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Visual Basic]]></category>

		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Tips and Howtos]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/tips-and-howtos/fetch-weather-data-from-google-server.html</guid>
		<description><![CDATA[
Here&#8217;s a code for fetching weather data from Google server through its undocumented weather Application Programming Interface (API) which was developed for use with iGoogle. The code below is part of the Flight Information Display System (FIDS) I&#8217;ve developed for some airline company few years ago.


Attribute VB_Name = &#34;weatherData&#34;
Dim xmlWeather As MSXML2.XMLHTTP60
Dim xmlWeatherResult As String
Dim [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/07/google-weather.jpg' alt='google weather api' /></p>
<p>Here&#8217;s a code for fetching weather data from Google server through its undocumented weather Application Programming Interface (API) which was developed for use with iGoogle. The code below is part of the Flight Information Display System (FIDS) I&#8217;ve developed for some airline company few years ago.</p>
<pre class="brush: vb; ">

Attribute VB_Name = &quot;weatherData&quot;
Dim xmlWeather As MSXML2.XMLHTTP60
Dim xmlWeatherResult As String
Dim xmlWeatherData As MSXML2.DOMDocument60
Dim xmlWeatherDataElement As MSXML2.IXMLDOMElement
Dim weatherCondition As String
Dim weatherTempC As String
Dim weatherTempF As String
Public destWeatherData As String

Public Function getWeatherData(wLocation As String)
    On Error Resume Next

    Set xmlWeather = New MSXML2.XMLHTTP60
        xmlWeather.open &quot;GET&quot;, &quot;http://www.google.com/ig/api?weather=&quot; &amp; Replace(wLocation, &quot; &quot;, &quot;%20&quot;) &amp; &quot;&amp;hl=en&quot;, False
        xmlWeather.send
        xmlWeatherResult = xmlWeather.responseXML.xml

    If InStr(1, xmlWeatherResult, &quot;temp_c&quot;, vbTextCompare) &gt; 0 Then
        Set xmlWeatherData = New MSXML2.DOMDocument60
        xmlWeatherData.loadXML (xmlWeatherResult)

        Set xmlWeatherDataElement = xmlWeatherData.selectSingleNode(&quot;//condition&quot;)
            weatherCondition = xmlWeatherDataElement.getAttribute(&quot;data&quot;)

        Set xmlWeatherDataElement = xmlWeatherData.selectSingleNode(&quot;//temp_c&quot;)
            weatherTempC = xmlWeatherDataElement.getAttribute(&quot;data&quot;)

        Set xmlWeatherDataElement = xmlWeatherData.selectSingleNode(&quot;//temp_f&quot;)
            weatherTempF = xmlWeatherDataElement.getAttribute(&quot;data&quot;)

        If weatherTempC &lt;&gt; &quot;&quot; And weatherTempF &lt;&gt; &quot;&quot; Then
            destWeatherData = weatherTempC &amp; &quot;C / &quot; &amp; weatherTempF &amp; &quot;F&quot;
        End If
    End If
End Function
</pre>
<p>This part of the code goes to your form.</p>
<pre class="brush: vb; ">

Private Sub cmdFetchWeather_Click()
    If comboNewDestination.Text &lt;&gt; &quot;&quot; Then
        getWeatherData (comboNewDestination.Text &amp; &quot;,Philippines&quot;)

        If destWeatherData &lt;&gt; &quot;&quot; Then
            txtNewWeather.Text = destWeatherData
            destWeatherData = &quot;&quot;
        Else
            MsgBox &quot;Weather data not available, Please try again later!&quot;, vbOKOnly + vbCritical, &quot;Error Fetching Weather Data&quot;
            txtNewWeather.Text = &quot;&quot;
        End If

    End If
End Sub
</pre>
<p>I&#8217;ll probably find more goodies from my old cranky drive so stay tune as I intend to post everything I&#8217;ll find useful there.</p>
<p> <a href="http://seoroot.com/blog/tips-and-howtos/fetch-weather-data-from-google-server.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_478'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/478?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_478' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=478&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Ftips-and-howtos%2Ffetch-weather-data-from-google-server.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/tips-and-howtos/fetch-weather-data-from-google-server.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Connecting to MySQL from VB</title>
		<link>http://seoroot.com/blog/tips-and-howtos/connecting-to-mysql-from-vb.html</link>
		<comments>http://seoroot.com/blog/tips-and-howtos/connecting-to-mysql-from-vb.html#comments</comments>
		<pubDate>Mon, 12 Jul 2010 18:24:53 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Visual Basic]]></category>

		<category><![CDATA[Code Snippets]]></category>

		<category><![CDATA[Tips and Howtos]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/tips-and-howtos/connecting-to-mysql-from-vb.html</guid>
		<description><![CDATA[
Here&#8217;s a snippet for connecting to MySQL db server from Visual basic. I&#8217;ve found it while trying to clean up an old hard drive. It&#8217;s quite primitive but I believe still of use for someone. 


Option Explicit
Public conn As ADODB.Connection
Public rs As ADODB.Recordset

Public Function myConnect(dbHost As String, dbUser As String, dbPass As String, dbName As [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/07/vb-and-mysql.jpg' alt='Vb and MySQL' /></p>
<p>Here&#8217;s a snippet for connecting to MySQL db server from Visual basic. I&#8217;ve found it while trying to clean up an old hard drive. It&#8217;s quite primitive but I believe still of use for someone. </p>
<pre class="brush: vb; ">

Option Explicit
Public conn As ADODB.Connection
Public rs As ADODB.Recordset

Public Function myConnect(dbHost As String, dbUser As String, dbPass As String, dbName As String, dbPort As Integer) &#039;Connect to MySQL server

    Dim constr As String

    constr = &quot;Provider=MSDASQL.1;Password=;Persist Security Info=True;User ID=;Extended Properties=&quot; &amp; Chr$(34) &amp; &quot;DRIVER={MySQL ODBC 5.1 Driver};DESC=;DATABASE=&quot; &amp; dbName &amp; &quot;;SERVER=&quot; &amp; dbHost &amp; &quot;;UID=&quot; &amp; dbUser &amp; &quot;;PASSWORD=&quot; &amp; dbPass &amp; &quot;;PORT=&quot; &amp; dbPort &amp; &quot;;OPTION=16387;Max Pool Size=10000;STMT=;&quot; &amp; Chr$(34)
    Set conn = New ADODB.Connection
    conn.Open constr

End Function

Public Function dbQuery(QueryString As String)

    Set rs = New ADODB.Recordset
    rs.Open QueryString, conn, adOpenUnspecified, adLockUnspecified

End Function

Public Function dbClose()
    If rs.State = 1 Then
        rs.Close
    End If
End Function
</pre>
<p>I will surely post more here later as I might find more goodies on this cranky drive.</p>
<p> <a href="http://seoroot.com/blog/tips-and-howtos/connecting-to-mysql-from-vb.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_476'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/476?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_476' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=476&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Ftips-and-howtos%2Fconnecting-to-mysql-from-vb.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/tips-and-howtos/connecting-to-mysql-from-vb.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Asus K40AE Inverted Webcam Display</title>
		<link>http://seoroot.com/blog/howto/asus-k40ae-inverted-webcam-display.html</link>
		<comments>http://seoroot.com/blog/howto/asus-k40ae-inverted-webcam-display.html#comments</comments>
		<pubDate>Wed, 07 Jul 2010 23:24:38 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Asus Drivers]]></category>

		<category><![CDATA[Tips and Fixes]]></category>

		<category><![CDATA[HowTo]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/howto/asus-k40ae-inverted-webcam-display.html</guid>
		<description><![CDATA[
Here&#8217;s how to fix the inverted webcam display problem on Asus K40EA notebook. This procedure will require a re-installation of the webcam driver so if you don&#8217;t have the latest driver yet, I advice you to download it now from here for windows xp and here for Windows 7.
After you&#8217;ve downloaded the webcam driver, decompress [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/07/asus-k40ae.jpg' alt='Asus K40AE Laptop' /></p>
<p>Here&#8217;s how to fix the inverted webcam display problem on Asus K40EA notebook. This procedure will require a re-installation of the webcam driver so if you don&#8217;t have the latest driver yet, I advice you to download it now from <a href="http://dlsvr04.asus.com/pub/ASUS/nb/Drivers/CMOS_Camera_Azurewave/Camera_Azurewave_VS011_XP_32_z585400204.zip">here</a> for windows xp and <a href="http://dlcdnet.asus.com/pub/ASUS/nb/Drivers/CMOS_Camera_Azurewave/CAMERA_AzureWave_VS011_WIN7_32_5853120203.zip">here</a> for Windows 7.</p>
<p>After you&#8217;ve downloaded the webcam driver, decompress the zip file then look for the file named &#8220;snp2uvc.inf&#8221; and open it with notepad. Find and change the following value below:</p>
<p><code><br />
From: HKR,DefaultSettings,Flip,0x00010001,0<br />
To: HKR,DefaultSettings,Flip,0x00010001,1<br />
</code></p>
<p>Now, install the driver and do a quick reboot.</p>
<p>That&#8217;s about it, you should have the right webcam display already.</p>
<p> <a href="http://seoroot.com/blog/howto/asus-k40ae-inverted-webcam-display.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_474'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/474?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_474' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=474&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Fhowto%2Fasus-k40ae-inverted-webcam-display.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/howto/asus-k40ae-inverted-webcam-display.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>PHP Pear DB Package Installation on WHM</title>
		<link>http://seoroot.com/blog/computing/programming/php/php-pear-db-package-installation-on-whm.html</link>
		<comments>http://seoroot.com/blog/computing/programming/php/php-pear-db-package-installation-on-whm.html#comments</comments>
		<pubDate>Wed, 30 Jun 2010 18:27:58 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Web Hosting Panels]]></category>

		<category><![CDATA[WHM CPanel]]></category>

		<category><![CDATA[Apache-PHP]]></category>

		<category><![CDATA[PHP]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/computing/programming/php/php-pear-db-package-installation-on-whm.html</guid>
		<description><![CDATA[
I&#8217;ve just finished migrating more than a hundred websites to a new server only to find out that a couple of the migrated sites are still using Pear DB (database abstraction layer) package. So after spending a minute to install the package from the Web Host Manager (WHM), I decided to post this short-straight-to-the-point how-to [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/06/pear-db-whm.jpg' alt='pear db whm' /></p>
<p>I&#8217;ve just finished migrating more than a hundred websites to a new server only to find out that a couple of the migrated sites are still using Pear DB (database abstraction layer) package. So after spending a minute to install the package from the Web Host Manager (WHM), I decided to post this short-straight-to-the-point how-to on how to install it, and here it goes.</p>
<p>1. Login as root to your Web Host Manager (WHM), and on the left pane, look for the &#8220;Software&#8221; section.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/06/whm-software.jpg' alt='whm software' /></p>
<p>2. Under the &#8220;Software&#8221; section, click on the &#8220;Module Installers&#8221;.</p>
<p>3. On the right pane, just below the search box, type in &#8220;DB&#8221; (without the quotes) and click on the &#8220;Install Now&#8221; button.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/06/php-extensions.jpg' alt='php extensions' /></p>
<p>4. Once you have the package successfully installed, you should see the DB module on the list of installed PHP modules.</p>
<p>That&#8217;s all about it. Scripts that are referencing to this module should run now without errors at all.</p>
<p> <a href="http://seoroot.com/blog/computing/programming/php/php-pear-db-package-installation-on-whm.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_470'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/470?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_470' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=470&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Fcomputing%2Fprogramming%2Fphp%2Fphp-pear-db-package-installation-on-whm.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/computing/programming/php/php-pear-db-package-installation-on-whm.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Program Installer Creator</title>
		<link>http://seoroot.com/blog/shareware/program-installer-creator.html</link>
		<comments>http://seoroot.com/blog/shareware/program-installer-creator.html#comments</comments>
		<pubDate>Mon, 17 May 2010 15:06:57 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Shareware]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/shareware/program-installer-creator.html</guid>
		<description><![CDATA[
Weeks ago, I was looking for an install creator program that I can used to create an installer of a legacy program which I was asked to install &#8212; which I must admit to be very much daunting to install because of the way it was designed to handle exceptions when it is not able [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/05/install-creator-banner.jpg' alt='Install creator banner' /></p>
<p>Weeks ago, I was looking for an install creator program that I can used to create an installer of a legacy program which I was asked to install &#8212; which I must admit to be very much daunting to install because of the way it was designed to handle exceptions when it is not able to find a required file or folder during runtime; the error message wasn&#8217;t helpful at all. So I decided to create an installer out of the installed files since the installer of this legacy program was nowhere to be found.</p>
<p>A quick search on the net brought me to the ClickTeam website where I&#8217;ve found the shareware Install Creator program that can be used to create a program installer so easily, which you can download from <a href="http://www.theclickteam.com/webftp/files/4/5/icinst.exe">here</a>.</p>
<p>After the software was installed on my VM, I was able to create an installer of the legacy program in just a couple of minutes. Anyway, I&#8217;m just posting it here just in case someone will be in need of it too.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/05/install-creator.jpg' alt='Install creator main' /></p>
<p> <a href="http://seoroot.com/blog/shareware/program-installer-creator.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_467'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/467?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_467' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=467&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Fshareware%2Fprogram-installer-creator.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/shareware/program-installer-creator.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Linksys E1000 Wireless Router DHCP Reservation</title>
		<link>http://seoroot.com/blog/linksys-routers/linksys-e1000-wireless-router-dhcp-reservation.html</link>
		<comments>http://seoroot.com/blog/linksys-routers/linksys-e1000-wireless-router-dhcp-reservation.html#comments</comments>
		<pubDate>Sat, 17 Apr 2010 12:50:37 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Tips and Howtos]]></category>

		<category><![CDATA[HowTo]]></category>

		<category><![CDATA[Linksys Routers]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/linksys-routers/linksys-e1000-wireless-router-dhcp-reservation.html</guid>
		<description><![CDATA[
Linksys E1000 is one of the new models of Linksys wireless routers released by Cisco last month. The Linksys E1000 wireless router has features not present on the WRT series. One of these features is the DHCP reservation, which is used to bind an IP address to a particular network client based on its MAC [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/04/linksys-e1000-router.jpg' alt='Linksys E1000 Wireless Router' /></p>
<p><strong>Linksys E1000</strong> is one of the new models of Linksys wireless routers released by Cisco last month. The Linksys E1000 wireless router has features not present on the <a href="http://seoroot.com/blog/?s=WRT54G&#038;paged=3">WRT series</a>. One of these features is the DHCP reservation, which is used to bind an IP address to a particular network client based on its MAC address. </p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/04/linksys-e1000.jpg' alt='Linksys E1000 Back' /></p>
<p>Few reasons why you want to reserve or bind an IP address to a specific network client is that, when you want to give high priority to this client over the other connected clients on the network, or perhaps you want to limit its access to the world wide web, and for many other reasons.</p>
<p>So, without further a do, here&#8217;s how to create a DHCP reservation on Linksys E1000 wireless router.</p>
<p>1. Login to the Linksys E1000 wireless router&#8217;s setup page. Once logged in, make sure that you are on the Setup - Basic setup page.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/04/linksys-e1000-setup.jpg' alt='Linksys E1000 Setup' /></p>
<p>2. Under the Network Setup section, look for the DHCP reservation button, click on it and the DHCP reservation page should pop-up.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/04/linksys-e1000-setup-reserva.jpg' alt='Linksys E1000 DHCP Reservation' /></p>
<p>3. Now, you have two ways to reserve an IP address to a network client. </p>
<p>The first one is for the clients who are connected to the network already and the second is for the clients who aren&#8217;t connected to the network yet. So let&#8217;s start with the former first.</p>
<p> <a href="http://seoroot.com/blog/linksys-routers/linksys-e1000-wireless-router-dhcp-reservation.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_458'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/458?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_458' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=458&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Flinksys-routers%2Flinksys-e1000-wireless-router-dhcp-reservation.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/linksys-routers/linksys-e1000-wireless-router-dhcp-reservation.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>How to enable telnet client on Windows 7</title>
		<link>http://seoroot.com/blog/tips-and-howtos/how-to-enable-telnet-client-on-windows-7.html</link>
		<comments>http://seoroot.com/blog/tips-and-howtos/how-to-enable-telnet-client-on-windows-7.html#comments</comments>
		<pubDate>Fri, 09 Apr 2010 08:18:38 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Windows 7 Desktop]]></category>

		<category><![CDATA[Windows 7]]></category>

		<category><![CDATA[Tips and Howtos]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/tips-and-howtos/how-to-enable-telnet-client-on-windows-7.html</guid>
		<description><![CDATA[
By default, Telnet client is disabled on Windows 7. So if you find yourself in need of this handy utility then here&#8217;s how to enable it.
Open your control panel and click on Programs. Now, under the Programs window, look for the Programs and Features. Below the Programs and Features, just next to the Uninstall a [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/04/windows-7.jpg' alt='Windows 7' /></p>
<p>By default, Telnet client is disabled on Windows 7. So if you find yourself in need of this handy utility then here&#8217;s how to enable it.</p>
<p>Open your control panel and click on Programs. Now, under the Programs window, look for the Programs and Features. Below the Programs and Features, just next to the Uninstall a program shortcut link, you should see the Turn Windows features on or off, click on it.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/04/program-features.jpg' alt='telnet program features' /></p>
<p>After you&#8217;ve clicked the Turn Windows features on or off link, you will be presented with a box named Windows Features. The Windows Features box has all the available features list down for you. These features can be enabled or disabled by just ticking the check box.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/04/windows-features.jpg' alt='enable telnet program' /></p>
<p> <a href="http://seoroot.com/blog/tips-and-howtos/how-to-enable-telnet-client-on-windows-7.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_452'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/452?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_452' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=452&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Ftips-and-howtos%2Fhow-to-enable-telnet-client-on-windows-7.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/tips-and-howtos/how-to-enable-telnet-client-on-windows-7.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Creative Vibra PD1100 Driver Download</title>
		<link>http://seoroot.com/blog/driver-downloads/creative-vibra-pd1100-driver-download.html</link>
		<comments>http://seoroot.com/blog/driver-downloads/creative-vibra-pd1100-driver-download.html#comments</comments>
		<pubDate>Fri, 09 Apr 2010 02:00:09 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Windows 7 Drivers]]></category>

		<category><![CDATA[Drivers]]></category>

		<category><![CDATA[Driver Downloads]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/driver-downloads/creative-vibra-pd1100-driver-download.html</guid>
		<description><![CDATA[I just feel the urge of sharing this driver as somebody somewhere might need it. Who knows? I might need this driver someday too, in case I would lost the installer disc.

Anyway, below is the driver for the Creative Vibra PD1100 webcam. Please feel free to download a copy and share, if you wish.
Creative Vibra [...]]]></description>
			<content:encoded><![CDATA[<p>I just feel the urge of sharing this driver as somebody somewhere might need it. Who knows? I might need this driver someday too, in case I would lost the installer disc.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/04/creative-vibra-vista.jpg' alt='creative vibra vista webcam' /></p>
<p>Anyway, below is the driver for the <strong>Creative Vibra PD1100</strong> webcam. Please feel free to download a copy and share, if you wish.</p>
<p><a href="http://www.seoroot.com/download/Creative-Vibra-Driver.zip">Creative Vibra PD1100 Driver</a></p>
<p>The driver is tested to work with both Windows 7 and Windows XP.</p>
<p> <a href="http://seoroot.com/blog/driver-downloads/creative-vibra-pd1100-driver-download.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_450'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/450?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_450' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=450&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Fdriver-downloads%2Fcreative-vibra-pd1100-driver-download.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/driver-downloads/creative-vibra-pd1100-driver-download.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Setup Comcast Router Parental Control</title>
		<link>http://seoroot.com/blog/tips-and-fixes/setup-comcast-router-parental-control.html</link>
		<comments>http://seoroot.com/blog/tips-and-fixes/setup-comcast-router-parental-control.html#comments</comments>
		<pubDate>Sun, 07 Mar 2010 02:30:09 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[comcast]]></category>

		<category><![CDATA[Tips and Howtos]]></category>

		<category><![CDATA[Tips and Fixes]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/tips-and-fixes/setup-comcast-router-parental-control.html</guid>
		<description><![CDATA[
This guide will show you on how to setup the internet parental control on Comcast home networking device. Please note that you need to have access to the Comcast home networking device to do the following steps.
Limit the time and days allowed to access the internet
1. Login to your Comcast home networking device and look [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/03/comcast-logo.jpg' alt='comcast logo' /></p>
<p>This guide will show you on how to setup the internet parental control on Comcast home networking device. Please note that you need to have access to the Comcast home networking device to do the following steps.</p>
<p><strong>Limit the time and days allowed to access the internet</strong></p>
<p>1. Login to your Comcast home networking device and look for Parental Controls.</p>
<p>2. Click on the Parental Controls, then click on Internet Time Access Limit. After the Internet Time Access Limit page is loaded, click on the Connected Computers button. Select the connected computer to impose the time limit.</p>
<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/03/comcast-parental-control.jpg' alt='Comcast parental control' /></p>
<p><a href="http://seoroot.com/blog/wp-content/uploads/2010/03/access-time-limit.jpg" rel='lightbox'><img src='http://seoroot.com/blog/wp-content/uploads/2010/03/access-time-limit.jpg' alt='Access Time Limit' rel='lightbox'  width='300' height='250' /></a></p>
<p><em>click to enlarge image</em></p>
<p>3. Now, check the days which the computer will only have access to the internet and and enter the start and end of the restriction.</p>
<p><a href="http://seoroot.com/blog/wp-content/uploads/2010/03/connected-computers.jpg" rel='lightbox'><img src='http://seoroot.com/blog/wp-content/uploads/2010/03/connected-computers.jpg' alt='comcast internet access limit' rel='lightbox' width='300' height='250' /></a></p>
<p>4. Finally, click on the Apply button to save changes.</p>
<p>That&#8217;s about it, Internet Access Time Limit is now setup.</p>
<p> <a href="http://seoroot.com/blog/tips-and-fixes/setup-comcast-router-parental-control.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_360'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/360?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_360' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=360&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Ftips-and-fixes%2Fsetup-comcast-router-parental-control.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/tips-and-fixes/setup-comcast-router-parental-control.html/feed</wfw:commentRss>
		</item>
		<item>
		<title>Compaq Presario CQ35 Series Windows 7 Drivers Download</title>
		<link>http://seoroot.com/blog/compaq-presario-drivers/compaq-presario-cq35-series-windows-7-drivers-download.html</link>
		<comments>http://seoroot.com/blog/compaq-presario-drivers/compaq-presario-cq35-series-windows-7-drivers-download.html#comments</comments>
		<pubDate>Tue, 09 Feb 2010 03:12:31 +0000</pubDate>
		<dc:creator>Batman</dc:creator>
		
		<category><![CDATA[Windows 7 Drivers]]></category>

		<category><![CDATA[Windows 7]]></category>

		<category><![CDATA[Compaq Presario Drivers]]></category>

		<guid isPermaLink="false">http://seoroot.com/blog/compaq-presario-drivers/compaq-presario-cq35-series-windows-7-drivers-download.html</guid>
		<description><![CDATA[
The drivers below are for Compaq Presario CQ35-202TU notebook and are for windows 7 32bit version only.
IDT High Definition Audio CODEC
Mobile Intel(R) 4 Series Express Chipset Family
NVIDIA GeForce G 105M Graphics Driver
Realtek USB 2.0 Card Reader
Synaptics PS/2 Port TouchPad
HP Quick Launch Buttons
Broadcom Wireless LAN Driver
Atheros Wireless LAN Driver
Intel PRO/Wireless Drivers
Realtek PCIe GBE/FE Family Controller Driver
HP [...]]]></description>
			<content:encoded><![CDATA[<p><img src='http://seoroot.com/blog/wp-content/uploads/2010/02/hp-cq35-202tu.gif' alt='HP Compaq Presario CQ35-202TU' /></p>
<p>The drivers below are for Compaq Presario CQ35-202TU notebook and are for windows 7 32bit version only.</p>
<p><a href="ftp://ftp.hp.com/pub/softpaq/sp45001-45500/sp45204.exe">IDT High Definition Audio CODEC</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp45001-45500/sp45414.exe">Mobile Intel(R) 4 Series Express Chipset Family</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp45001-45500/sp45203.exe">NVIDIA GeForce G 105M Graphics Driver</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp45001-45500/sp45206.exe">Realtek USB 2.0 Card Reader</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp45001-45500/sp45207.exe">Synaptics PS/2 Port TouchPad</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp46501-47000/sp46731.exe">HP Quick Launch Buttons</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp47001-47500/sp47148.exe">Broadcom Wireless LAN Driver</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp46501-47000/sp46609.exe">Atheros Wireless LAN Driver</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp45501-46000/sp45671.exe">Intel PRO/Wireless Drivers</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp45001-45500/sp45205.exe">Realtek PCIe GBE/FE Family Controller Driver</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp45001-45500/sp45222.exe">HP Wireless Assistant<br />
</a><a href="ftp://ftp.hp.com/pub/softpaq/sp43501-44000/sp43882.exe">Digital Persona Fingerprint Reader Software</a><br />
<a href="ftp://ftp.hp.com/pub/softpaq/sp45001-45500/sp45202.exe">Compaq Intel Chipset Installation Utility for 4 Series</a></p>
<p> <a href="http://seoroot.com/blog/compaq-presario-drivers/compaq-presario-cq35-series-windows-7-drivers-download.html" class="more" class="more-link">(more&#8230;)</a></p>
<p><map name='google_ad_map_441'>
<area shape='rect' href='http://imageads.googleadservices.com/pagead/imgclick/441?pos=0' coords='1,2,367,28' />
<area shape='rect' href='http://services.google.com/feedback/abg' coords='384,10,453,23'/></map>
<img usemap='#google_ad_map_441' border='0' src='http://imageads.googleadservices.com/pagead/ads?format=468x30_aff_img&amp;client=&amp;channel=&amp;output=png&amp;cuid=441&amp;url= http%3A%2F%2Fseoroot.com%2Fblog%2Fcompaq-presario-drivers%2Fcompaq-presario-cq35-series-windows-7-drivers-download.html' /></p>]]></content:encoded>
			<wfw:commentRss>http://seoroot.com/blog/compaq-presario-drivers/compaq-presario-cq35-series-windows-7-drivers-download.html/feed</wfw:commentRss>
		</item>
	</channel>
</rss>
