<?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>Dark Horizon &#187; Tips and Tricks</title>
	<atom:link href="http://magicalharsh.com/blog/category/tips-and-tricks/feed/" rel="self" type="application/rss+xml" />
	<link>http://magicalharsh.com/blog</link>
	<description>Hack the World before its Hacked</description>
	<lastBuildDate>Mon, 12 Jul 2010 06:54:32 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Connecting DataBase to Netbeans IDE</title>
		<link>http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/</link>
		<comments>http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/#comments</comments>
		<pubDate>Thu, 08 Jul 2010 13:21:48 +0000</pubDate>
		<dc:creator>vibhu</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Oracle]]></category>
		<category><![CDATA[Programming]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[java prgramming]]></category>
		<category><![CDATA[Jdbc programming]]></category>
		<category><![CDATA[Netbeans tutorial]]></category>
		<category><![CDATA[Oracle/sun developmet]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=726</guid>
		<description><![CDATA[
			
				
			
		
Netbeans is an IDE -a JavA editor provided by Sun Microsystem and it is open source (absolutely free!!)
From last few days i was having problem in my JDBC programming while connecting the ORACLE server to the Netbeans. But finally i have solved it by the help of my senior. But when i was surfing the [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fconnecting-database-to-netbeans-ide%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fconnecting-database-to-netbeans-ide%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://www.netbeans.org/"><img title="Netbeans" src="http://img704.imageshack.us/img704/6972/netbeanslogo.png" alt="" width="100" height="100" align="left" /></a><strong>Netbeans is an IDE -a JavA editor provided by Sun Microsystem and it is open source (absolutely free!!)</strong><br />
From last few days i was having problem in my JDBC programming while connecting the ORACLE server to the Netbeans. But finally i have solved it by the help of my senior. But when i was surfing the solution on the internet,it is almost very difficult to search it on <em>Google</em>..and found some forums where where the same problem was discussed but no one tells the appropriate answer.. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  so i thought i should help my friends <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> .<br />
Generally in java we use only two database Oracle and Mysql,both vendor provides the jar files which contains classes for the jdbc-driver.I m going to describe both connectivity one by one . <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<blockquote><p><strong>ORACLE DATABASE</strong></p></blockquote>
<p><a href="http://www.oracle.com"><img title="Oracle" src="http://img704.imageshack.us/img704/1024/oraclelogo3.jpg" alt="" width="100" height="80" align="right" /></a><br />
ORACLE DATABASE is very easy to install . I think you have already installed it i m just going to explain it&#8217;s connectivity with Netbeans</p>
<ol>First run the Netbeans IDE .and open the Service window..</ol>
<ol>In service window click on Database expand it and the right click on the Driver ,then add new driver. It will demand for jar file .which is oracle14.jar browse it from <strong>C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\oracle14.jar</strong></ol>
<ol>Then right click on the database and then Add new connection it will pop-up a new window like below.:)</ol>
<p><a href="http://img534.imageshack.us/img534/9628/fullscreencapture080720.jpg"><img title="New Connection" src="http://img534.imageshack.us/img534/9628/fullscreencapture080720.jpg" alt="" width="400" height="336" /></a></p>
<ol>You can fill the text boxes like shown in image or go to direct URL and paste this url <strong>jdbc:oracle:thin:@//localhost:1521/XE</strong></ol>
<ol>now click next and and then select the schema .. then OK. Now u will find a new driver by expanding the database. you simply right click on the driver and click connect ,it will ask for the password of the database then you can execute your sql command on the netbeans like this :</ol>
<p><a href="http://img683.imageshack.us/img683/9628/fullscreencapture080720.jpg"><img title="essai" src="http://img683.imageshack.us/img683/9628/fullscreencapture080720.jpg" alt="" width="400" height="270" /></a></p>
<ol>Now it&#8217;s time for some jdbc programming , first to use sql queries in your programming you have to import oracle jdbc library to you library folder for this just Right click on the project library folder and then Add new Library, the oracle library will be not there you have to create it <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' />  . for this go to create it will pop a window ,in name put oracle and select class library the add new jar file from <strong>C:\oraclexe\app\oracle\product\10.2.0\server\jdbc\lib\oracle14.jar</strong> then OK . library has been created select it and the the library will be added to your library folder.</ol>
<ol>And to connect it from your program you have to put <strong>&#8220;jdbc:oracle:thin:@//localhost:1521/XE&#8221;;</strong> as your URL and <strong>&#8220;oracle.jdbc.OracleDriver&#8221;</strong> as your driver it&#8217;s simple <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </ol>
<p><strong><em> Now your Netbeans is ready Oracle Database Programming with JAVA</em></strong></p>
<blockquote><p>My SQL DATABASE</p></blockquote>
<p><a href="http://www.mysql.com"><img title="Mysql" src="http://img704.imageshack.us/img704/6600/mysql.gif" alt="" width="100" height="167" align="right" /></a><br />
Now it&#8217;s turn for MySql database . it&#8217;s very simple to install and many of the student who learns database connectivity opt mysql as their database..is&#8217;t connectivity with Netbeans is very simple just few steps <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<ol>You don&#8217;t have to add new driver here ,it is provided by Netbeans. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Just go to database the right click and add new connection a pop window show as below will appear: <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </ol>
<p><a href="http://img46.imageshack.us/img46/9628/fullscreencapture080720.jpg"><img title="essai" src="http://img46.imageshack.us/img46/9628/fullscreencapture080720.jpg" alt="" width="400" height="337" /></a></p>
<ol>You can fill the boxes ,as shown in figure <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  but first you have to create a database in your sql server. Or you cal select direct URL and put the following url <strong>jdbc:mysql://localhost:3306/dbforplacement(&#8220;dbforplacement&#8221; is my database name)</strong>. Then click ok and it&#8217;s over .</ol>
<ol>Now for JDBC programming you to Add mysql jdbc library to your library folder of your project for this just go to library right click on this and then Add new library .<br />
here you will find Mysql-jdbc library as netbeans provide it just add it and then ok <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </ol>
<ol>Now in your program you have to use<strong> &#8220;jdbc:mysql://localhost:3306/dbforplacement&#8221;(&#8220;dbforplacement&#8221; is my database name) </strong>as the URL of the Database and<strong> &#8220;com.mysql.jdbc.Driver&#8221;</strong> as driver..</ol>
<p><strong>Now you are ready with MySql database server connected with Netbeans IDE to learn database programming in JAVA <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<p><em>you can comment below for your Queries.. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </em></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/&amp;title=Connecting+DataBase+to+Netbeans+IDE+" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/&amp;t=Connecting+DataBase+to+Netbeans+IDE+" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Connecting+DataBase+to+Netbeans+IDE++-+http://b2l.me/9p6ap+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/&amp;title=Connecting+DataBase+to+Netbeans+IDE+&amp;summary=Netbeans%20is%20an%20IDE%20-a%20JavA%20editor%20provided%20by%20Sun%20Microsystem%20and%20it%20is%20open%20source%20%28absolutely%20free%21%21%29%0D%0AFrom%20last%20few%20days%20i%20was%20having%20problem%20in%20my%20JDBC%20programming%20while%20connecting%20the%20ORACLE%20server%20to%20the%20Netbeans.%20But%20finally%20i%20have%20solved%20it%20by%20the%20help%20of%20my%20senior.%20But%20when%20i%20was%20surfing%20th&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Connecting+DataBase+to+Netbeans+IDE+&amp;du=http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/&amp;cn=Netbeans%20is%20an%20IDE%20-a%20JavA%20editor%20provided%20by%20Sun%20Microsystem%20and%20it%20is%20open%20source%20%28absolutely%20free%21%21%29%0D%0AFrom%20last%20few%20days%20i%20was%20having%20problem%20in%20my%20JDBC%20programming%20while%20connecting%20the%20ORACLE%20server%20to%20the%20Netbeans.%20But%20finally%20i%20have%20solved%20it%20by%20the%20help%20of%20my%20senior.%20But%20when%20i%20was%20surfing%20th" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/connecting-database-to-netbeans-ide/feed/</wfw:commentRss>
		<slash:comments>23</slash:comments>
		</item>
		<item>
		<title>DropBOx-share File smartly</title>
		<link>http://magicalharsh.com/blog/dropbox-share-file-smartly/</link>
		<comments>http://magicalharsh.com/blog/dropbox-share-file-smartly/#comments</comments>
		<pubDate>Tue, 06 Jul 2010 19:04:34 +0000</pubDate>
		<dc:creator>vibhu</dc:creator>
				<category><![CDATA[Social]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tools]]></category>
		<category><![CDATA[Web]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[softwares]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[Dropbox]]></category>
		<category><![CDATA[online sharing]]></category>
		<category><![CDATA[utility tools]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=698</guid>
		<description><![CDATA[
			
				
			
		
DROPBOX is used for online back up file sharing and file synchronizing
 
 Oh !! I dn&#8217;t have the Pen drive ,and i want these file to be with me as i m leaving from the city  . 
 I m working on some project .and i want my partner to get program files [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fdropbox-share-file-smartly%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fdropbox-share-file-smartly%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a href="http://img690.imageshack.us/img690/5638/dropboxlogohome.png"><img class="alignleft size-full wp-image-699" src="http://img690.imageshack.us/img690/5638/dropboxlogohome.png" alt="" width="290" height="75" /></a><strong>DROPBOX</strong><em> is used for online back up file sharing and file synchronizing</em></p>
<p><em> </em></p>
<ul> <em>Oh !! I dn&#8217;t have the Pen drive ,and i want these file to be with me as i m leaving from the city <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /> . </em></ul>
<ul><em> I m working on some project .and i want my partner to get program files in a sync manner and in a very fast way. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </em></ul>
<ul><em> I want online back up of my important files ..</em></ul>
<p><em> </em></p>
<p>The one and the very best solution till now is The DROPBOX. It work like a box in which u can put your files and the box is saved at internet. you are somewhere away from your system and want to work on these files ,now you can just work on it modify it you will found that it was modified on yous system also in a sync manner. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
It is open source Software and can easily be downloaded at company&#8217;s website <a href="http://www.dropbox.com">DropBox.com</a> and easy to install at any Platform Windows ,linux or Mac .</p>
<p>After installing it you will see an icon at your desktop and you can make account of your email id .<br />
it also create a folder as the child of your documents folder like this:-<br />
<a href="http://img689.imageshack.us/img689/2026/fullscreencapture070720.jpg"><img class="aligncenter size-full wp-image-713" src="http://img689.imageshack.us/img689/2026/fullscreencapture070720.jpg" alt="" width="741" height="394" /></a></p>
<p><em>you can make a new folder rename it and then put right click ,go to dropbox menu and make it share with other users to share it on internet with your partners.</em></p>
<p><strong>FEATURES-</strong></p>
<p><strong><em>File Sync</em></strong><em> </em><br />
Dropbox allows u to sync file to your computers through internet</p>
<ul> Sync files of any size or type.Automatically syncs when new files or changes are detected.</ul>
<ul>Work on files in your Dropbox even if you&#8217;re offline. Your changes sync once your computer has an Internet connection again.</ul>
<p><strong><em>File Sharing</em></strong><br />
sharing of files can easily be done at internet or by your system with other users..</p>
<ul> Shared folders allow several people to collaborate on a set of files.And You can see other people&#8217;s changes instantly.</ul>
<ul> You can control people to able to access the shared folder and can easily kick them .. <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /> </ul>
<p><strong><em>Online backup</em></strong><br />
Dropbox back up your files automatically when you put those files on the dropbox folder</p>
<p><strong>and tho other more like web access ,security and privacy ,mobile device access..and many more <img src='http://magicalharsh.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </strong></p>
<blockquote><p>Today many company use this dropbox in their project making and m also having full benefit . Just try it !!!!</p></blockquote>
<p>More Information about Dropbox see <a href="http://www.dropbox.com"><strong>Dropbox.com</strong></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/dropbox-share-file-smartly/&amp;title=DropBOx-share+File+smartly" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/dropbox-share-file-smartly/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/dropbox-share-file-smartly/&amp;t=DropBOx-share+File+smartly" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=DropBOx-share+File+smartly+-+http://b2l.me/9amc3+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/dropbox-share-file-smartly/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/dropbox-share-file-smartly/&amp;title=DropBOx-share+File+smartly&amp;summary=DROPBOX%20is%20used%20for%20online%20back%20up%20file%20sharing%20and%20file%20synchronizing%0D%0A%0D%0A%20%0D%0A%20Oh%20%21%21%20I%20dn%27t%20have%20the%20Pen%20drive%20%2Cand%20i%20want%20these%20file%20to%20be%20with%20me%20as%20i%20m%20leaving%20from%20the%20city%20%3A%28.%20%0D%0A%20I%20m%20working%20on%20some%20project%20.and%20i%20want%20my%20partner%20to%20get%20program%20files%20in%20a%20sync%20manner%20and%20in%20a%20very%20fast%20way.%20%3A%29%0D%0A&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=DropBOx-share+File+smartly&amp;du=http://magicalharsh.com/blog/dropbox-share-file-smartly/&amp;cn=DROPBOX%20is%20used%20for%20online%20back%20up%20file%20sharing%20and%20file%20synchronizing%0D%0A%0D%0A%20%0D%0A%20Oh%20%21%21%20I%20dn%27t%20have%20the%20Pen%20drive%20%2Cand%20i%20want%20these%20file%20to%20be%20with%20me%20as%20i%20m%20leaving%20from%20the%20city%20%3A%28.%20%0D%0A%20I%20m%20working%20on%20some%20project%20.and%20i%20want%20my%20partner%20to%20get%20program%20files%20in%20a%20sync%20manner%20and%20in%20a%20very%20fast%20way.%20%3A%29%0D%0A" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/teamviewer-an-important-project-tool/" title="Teamviewer -an important project tool (July 5, 2010)">Teamviewer -an important project tool</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/dropbox-share-file-smartly/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Solving Counter Strike + IDM problem</title>
		<link>http://magicalharsh.com/blog/solving-counter-strike-idm-problem/</link>
		<comments>http://magicalharsh.com/blog/solving-counter-strike-idm-problem/#comments</comments>
		<pubDate>Mon, 02 Nov 2009 16:50:32 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[counter strike]]></category>
		<category><![CDATA[idm]]></category>
		<category><![CDATA[internet download manager]]></category>
		<category><![CDATA[problem]]></category>
		<category><![CDATA[troubleshoot]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=670</guid>
		<description><![CDATA[
			
				
			
		
The reason Counter Strike freezes when you have got IDM installed in your system is due to IEMonitor.exe ( which is used for browser integration )
Solution :

In Internet Download Manager, click Downloading -&#62; Options -&#62; General.
There, you have to uncheck the intergration for IE and IE based browsers and secondly, uncheck the &#8220;Run module for [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fsolving-counter-strike-idm-problem%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fsolving-counter-strike-idm-problem%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The reason Counter Strike freezes when you have got IDM installed in your system is due to IEMonitor.exe ( which is used for browser integration )</p>
<p><span style="text-decoration: underline;"><strong>Solution :<br />
</strong></span></p>
<p>In Internet Download Manager, click Downloading -&gt; Options -&gt; General.</p>
<p>There, you have to uncheck the intergration for IE and IE based browsers and secondly, uncheck the &#8220;Run module for monitoring in IE-based browsers (MSN, Avant&#8230;)&#8221; and press Ok. &lt;&#8211; This actually stops launching IEMonitor.exe and hence solves it all.</p>
<p style="text-align: center;"><a href="http://img208.imageshack.us/img208/4581/iemonitor3.png"><img class="aligncenter" src="http://img208.imageshack.us/img208/4581/iemonitor3.png" alt="" width="326.470588235" height="400" /></a></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/&amp;title=Solving+Counter+Strike+%2B+IDM+problem" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/&amp;t=Solving+Counter+Strike+%2B+IDM+problem" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Solving+Counter+Strike+%2B+IDM+problem+-+http://b2l.me/pu43m+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/solving-counter-strike-idm-problem/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/&amp;title=Solving+Counter+Strike+%2B+IDM+problem&amp;summary=The%20reason%20Counter%20Strike%20freezes%20when%20you%20have%20got%20IDM%20installed%20in%20your%20system%20is%20due%20to%20IEMonitor.exe%20%28%20which%20is%20used%20for%20browser%20integration%20%29%0D%0A%0D%0ASolution%20%3A%0D%0A%0D%0A%0D%0AIn%20Internet%20Download%20Manager%2C%20click%20Downloading%20-%26gt%3B%20Options%20-%26gt%3B%20General.%0D%0A%0D%0AThere%2C%20you%20have%20to%20uncheck%20the%20intergration%20for%20IE%20and&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Solving+Counter+Strike+%2B+IDM+problem&amp;du=http://magicalharsh.com/blog/solving-counter-strike-idm-problem/&amp;cn=The%20reason%20Counter%20Strike%20freezes%20when%20you%20have%20got%20IDM%20installed%20in%20your%20system%20is%20due%20to%20IEMonitor.exe%20%28%20which%20is%20used%20for%20browser%20integration%20%29%0D%0A%0D%0ASolution%20%3A%0D%0A%0D%0A%0D%0AIn%20Internet%20Download%20Manager%2C%20click%20Downloading%20-%26gt%3B%20Options%20-%26gt%3B%20General.%0D%0A%0D%0AThere%2C%20you%20have%20to%20uncheck%20the%20intergration%20for%20IE%20and" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/windows-startup-booster/" title="Windows Startup Booster (June 27, 2008)">Windows Startup Booster</a> </li>
	<li><a href="http://magicalharsh.com/blog/unable-to-open-d-by-double-clicking/" title="Unable to open D: by double clicking (October 3, 2008)">Unable to open D: by double clicking</a> </li>
	<li><a href="http://magicalharsh.com/blog/track-your-pc/" title="Track Your PC (June 6, 2008)">Track Your PC</a> </li>
	<li><a href="http://magicalharsh.com/blog/speed-up-the-start-menu/" title="Speed up the Start Menu (August 1, 2008)">Speed up the Start Menu</a> </li>
	<li><a href="http://magicalharsh.com/blog/speed-up-the-start-menu-2/" title="Speed up the Start Menu (August 6, 2008)">Speed up the Start Menu</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/solving-counter-strike-idm-problem/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove gphone virus from the system :: Gtalk</title>
		<link>http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/</link>
		<comments>http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/#comments</comments>
		<pubDate>Tue, 02 Jun 2009 18:12:22 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[windows]]></category>
		<category><![CDATA[glary utilities]]></category>
		<category><![CDATA[gphone virus]]></category>
		<category><![CDATA[gphone.exe]]></category>
		<category><![CDATA[gtalk virus]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=521</guid>
		<description><![CDATA[
			
				
			
		
Gphone.exe virus .
This is one of the most frequent virus nowadays that infects your Gtalk and Yahoo messenger by sending automated messages to your friends list .Gphone virus basically is a  .exe file which looks like a folder and it can take any name of any other folder .


How to remove this virus :
1. [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fremove-gphone-virus-from-the-system-gtalk%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fremove-gphone-virus-from-the-system-gtalk%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>Gphone.exe virus .</p>
<p>This is one of the most frequent virus nowadays that infects your Gtalk and Yahoo messenger by sending automated messages to your friends list .Gphone virus basically is a  .exe file which looks like a folder and it can take any name of any other folder .<br />
<span id="more-521"></span></p>
<p style="text-align: center;"><img class="aligncenter" src="http://img5.imageshack.us/img5/7276/gtalkvirus.jpg" alt="" width="200" /></p>
<p><span style="text-decoration: underline;">How to remove this virus :</span></p>
<p>1. Go to Task Manager -&gt;Processes and then click on gphone.exe and click on end process.</p>
<p>2. manually go to folder where gphone.exe is present and delete it.</p>
<p><span style="text-decoration: underline;">Or Else ,</span></p>
<p>use the <a href="http://www.glaryutilities.com/gu.html?tag=download">Glary Utilities freeware</a> to remove the exe files.<br />
1. Install the Glary Utilities.Open it</p>
<p>2. Go to the modules tab -&gt; Files and Folders-&gt; Duplicate files finder.</p>
<p>3. Search for .exe files of same size and delete all the files with size 260 kb.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/&amp;title=Remove+gphone+virus+from+the+system+%3A%3A+Gtalk" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/&amp;t=Remove+gphone+virus+from+the+system+%3A%3A+Gtalk" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Remove+gphone+virus+from+the+system+%3A%3A+Gtalk+-+http://b2l.me/pt7es+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/&amp;title=Remove+gphone+virus+from+the+system+%3A%3A+Gtalk&amp;summary=Gphone.exe%20virus%20.%0D%0A%0D%0AThis%20is%20one%20of%20the%20most%20frequent%20virus%20nowadays%20that%20infects%20your%20Gtalk%20and%20Yahoo%20messenger%20by%20sending%20automated%20messages%20to%20your%20friends%20list%20.Gphone%20virus%20basically%20is%20a%20%20.exe%20file%20which%20looks%20like%20a%20folder%20and%20it%20can%20take%20any%20name%20of%20any%20other%20folder%20.%0D%0A%0D%0A%0D%0A%0D%0AHow%20to%20remove%20t&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Remove+gphone+virus+from+the+system+%3A%3A+Gtalk&amp;du=http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/&amp;cn=Gphone.exe%20virus%20.%0D%0A%0D%0AThis%20is%20one%20of%20the%20most%20frequent%20virus%20nowadays%20that%20infects%20your%20Gtalk%20and%20Yahoo%20messenger%20by%20sending%20automated%20messages%20to%20your%20friends%20list%20.Gphone%20virus%20basically%20is%20a%20%20.exe%20file%20which%20looks%20like%20a%20folder%20and%20it%20can%20take%20any%20name%20of%20any%20other%20folder%20.%0D%0A%0D%0A%0D%0A%0D%0AHow%20to%20remove%20t" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li>No related posts.</li>
	</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/remove-gphone-virus-from-the-system-gtalk/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Remove Status messages in Y! Messenger</title>
		<link>http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/</link>
		<comments>http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/#comments</comments>
		<pubDate>Sun, 11 Jan 2009 14:01:00 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[internet]]></category>
		<category><![CDATA[tricks]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=354</guid>
		<description><![CDATA[
			
				
			
		
Remove Status messages in Y! Messenger

Open Registry Editor ( type regedit in Run and pree Enter )

Browse to HKEY_CURRENT_USER Software yahoo pager profiles {yahooID} Custom Msgs

delete everything except default &#8230; you are done &#8230; Cheers !!!





		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Subscribe to the comments for this [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fremove-status-messages-in-y-messenger%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fremove-status-messages-in-y-messenger%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><span class="Apple-style-span" style="font-family: Arial; white-space: pre; "><span class="Apple-style-span" style="font-weight: bold;"><span class="Apple-style-span" style="color: rgb(51, 255, 51);"><span class="Apple-style-span" style="font-size: large;">Remove Status messages in Y! Messenger</span></span></span></span>
<div><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; white-space: pre;"><br /></span></div>
<div><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; white-space: pre;">Open Registry Editor ( type regedit in Run and pree Enter )</span></div>
<div><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; white-space: pre;"><br /></span></div>
<div><span class="Apple-style-span" style="font-family: Arial; font-size: 13px; white-space: pre;"><span class="Apple-style-span" style="color: rgb(255, 0, 0);">Browse to </span><span class="Apple-style-span" style="font-family: arial; line-height: 16px; white-space: normal; "><span class="Apple-style-span" style="color: rgb(255, 0, 0);">HKEY_CURRENT_USER Software yahoo pager profiles {yahooID} Custom Msgs</span></span></span></div>
<div><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: arial; font-size: 13px; line-height: 16px;"><br /></span></div>
<div><span class="Apple-style-span" style="color: rgb(51, 51, 51); font-family: arial; font-size: 13px; line-height: 16px;">delete everything except default &#8230; you are done &#8230; Cheers !!!</span></div>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/&amp;title=Remove+Status+messages+in+Y%21+Messenger" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/&amp;t=Remove+Status+messages+in+Y%21+Messenger" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Remove+Status+messages+in+Y%21+Messenger+-+http://b2l.me/puwg5+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/&amp;title=Remove+Status+messages+in+Y%21+Messenger&amp;summary=Remove%20Status%20messages%20in%20Y%21%20MessengerOpen%20Registry%20Editor%20%28%20type%20regedit%20in%20Run%20and%20pree%20Enter%20%29Browse%20to%20HKEY_CURRENT_USER%20Software%20yahoo%20pager%20profiles%20%7ByahooID%7D%20Custom%20Msgsdelete%20everything%20except%20default%20...%20you%20are%20done%20...%20Cheers%20%21%21%21&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Remove+Status+messages+in+Y%21+Messenger&amp;du=http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/&amp;cn=Remove%20Status%20messages%20in%20Y%21%20MessengerOpen%20Registry%20Editor%20%28%20type%20regedit%20in%20Run%20and%20pree%20Enter%20%29Browse%20to%20HKEY_CURRENT_USER%20Software%20yahoo%20pager%20profiles%20%7ByahooID%7D%20Custom%20Msgsdelete%20everything%20except%20default%20...%20you%20are%20done%20...%20Cheers%20%21%21%21" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/your-download-market/" title="Your Download Market (November 6, 2008)">Your Download Market</a> </li>
	<li><a href="http://magicalharsh.com/blog/windows-startup-booster/" title="Windows Startup Booster (June 27, 2008)">Windows Startup Booster</a> </li>
	<li><a href="http://magicalharsh.com/blog/unable-to-save-files-from-mozilla/" title="Unable to save files from Mozilla (April 25, 2009)">Unable to save files from Mozilla</a> </li>
	<li><a href="http://magicalharsh.com/blog/unable-to-open-d-by-double-clicking/" title="Unable to open D: by double clicking (October 3, 2008)">Unable to open D: by double clicking</a> </li>
	<li><a href="http://magicalharsh.com/blog/type-url-without-mouse-click/" title="Type URL without mouse-click (October 3, 2008)">Type URL without mouse-click</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>google talk freezes when using show current music track using winamp 5.5</title>
		<link>http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/</link>
		<comments>http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/#comments</comments>
		<pubDate>Tue, 25 Nov 2008 17:37:00 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[google talk]]></category>
		<category><![CDATA[messenger]]></category>
		<category><![CDATA[winamp]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=350</guid>
		<description><![CDATA[
			
				
			
		
Google talk freezes when &#8220;show current music track&#8221;
At times when you use Gtalk with Winamp 5.5 version and set the current status in GTak to show current music track gtalk freezes. here is a solution to this problem.
Whenever you select the Show my current music track, Google talk either freezes or stops responding. This is [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fgoogle-talk-freezes-when-using-show-current-music-track-using-winamp-55%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fgoogle-talk-freezes-when-using-show-current-music-track-using-winamp-55%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><span style="font-weight: bold; color: rgb(51, 255, 51);font-size:130%;" >Google talk freezes when &#8220;show current music track&#8221;</span></p>
<p>At times when you use Gtalk with Winamp 5.5 version and set the current status in GTak to show current music track gtalk freezes. here is a solution to this problem.</p>
<p>Whenever you select the Show my current music track, Google talk either freezes or stops responding. This is actually a technical issue with Google talk or Winamp which is yet to be discovered but many users who have upgraded to Winamp 5.5 are facing this problem, so one of  simple resolution for fixing this bug :</p>
<p>The solution is:</p>
<p><span style="color: rgb(255, 0, 0);">Step 1: Go to the root directory of Winamp where it is installed which is usually in C:Program FilesWinamp</span></p>
<p><span style="color: rgb(255, 0, 0);">Step 2: Select Tools->Folder Options->View (Tab) and uncheck the hide extensions for known file types and click Ok.</span></p>
<p><span style="color: rgb(255, 0, 0);">Step 3: Now create an empty file (Right click the mouse -> New -> Text document), so the default file would be like “New Text Document.txt”.</span></p>
<p><span style="color: rgb(255, 0, 0);">Step4: Rename the above file to “winamp.m3u” and save.</span></p>
<p><span style="color: rgb(255, 0, 0);">Step5: Close Winamp and Google Talk. Now open again and Your Show Current music track status should work</span></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/&amp;title=google+talk+freezes+when+using+show+current+music+track+using+winamp+5.5" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/&amp;t=google+talk+freezes+when+using+show+current+music+track+using+winamp+5.5" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=google+talk+freezes+when+using+show+current+music+track+using+winamp+5.5+-+http://b2l.me/pt7my+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/&amp;title=google+talk+freezes+when+using+show+current+music+track+using+winamp+5.5&amp;summary=Google%20talk%20freezes%20when%20%22show%20current%20music%20track%22At%20times%20when%20you%20use%20Gtalk%20with%20Winamp%205.5%20version%20and%20set%20the%20current%20status%20in%20GTak%20to%20show%20current%20music%20track%20gtalk%20freezes.%20here%20is%20a%20solution%20to%20this%20problem.Whenever%20you%20select%20the%20Show%20my%20current%20music%20track%2C%20Google%20talk%20either%20freezes%20or%20s&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=google+talk+freezes+when+using+show+current+music+track+using+winamp+5.5&amp;du=http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/&amp;cn=Google%20talk%20freezes%20when%20%22show%20current%20music%20track%22At%20times%20when%20you%20use%20Gtalk%20with%20Winamp%205.5%20version%20and%20set%20the%20current%20status%20in%20GTak%20to%20show%20current%20music%20track%20gtalk%20freezes.%20here%20is%20a%20solution%20to%20this%20problem.Whenever%20you%20select%20the%20Show%20my%20current%20music%20track%2C%20Google%20talk%20either%20freezes%20or%20s" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/configuring-pigdin-behind-a-proxy/" title="Configuring Pigdin behind a proxy (October 11, 2009)">Configuring Pigdin behind a proxy</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/google-talk-freezes-when-using-show-current-music-track-using-winamp-55/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Type URL without mouse-click</title>
		<link>http://magicalharsh.com/blog/type-url-without-mouse-click/</link>
		<comments>http://magicalharsh.com/blog/type-url-without-mouse-click/#comments</comments>
		<pubDate>Fri, 03 Oct 2008 18:41:00 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=339</guid>
		<description><![CDATA[
			
				
			
		

Type URL without mouse-click
Press Alt+D on keyboard.
This allows you to enter a URL without the mouse click.
This will be helpful for the laptop users who find it uneasy to use their touchpad every time they want to type a URL.






		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Subscribe to the comments [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Ftype-url-without-mouse-click%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Ftype-url-without-mouse-click%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><span class="Apple-style-span"  style="color: rgb(96, 96, 96);  font-family:'times new roman';">
<p><span class="Apple-style-span" style="color: rgb(0, 0, 0);"><span class="Apple-style-span"  style=" white-space: pre; font-family:Arial;"><span class="Apple-style-span"  style="font-size:x-large;"><span class="Apple-style-span" style="font-weight: bold;"><span class="Apple-style-span" style="color: rgb(51, 255, 51);">Type URL without mouse-click</span></span></span></span><br /></span></p>
<p><span><span class="Apple-style-span" style="color: rgb(255, 255, 255);">Press </span><strong><span class="Apple-style-span" style="color: rgb(255, 255, 255);">Alt+D </span></strong><span class="Apple-style-span" style="color: rgb(255, 255, 255);">on keyboard.</span></span></p>
<p><span><strong><span class="Apple-style-span" style="color: rgb(255, 255, 255);">This allows you to enter a URL without the mouse click.</span></strong></span></p>
<p><span><span class="Apple-style-span" style="color: rgb(255, 255, 255);">This will be helpful for the laptop users who find it uneasy to use their touchpad every time they want to type a URL</span></span><span style="color:#000000;">.</span></p>
<p></span></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/type-url-without-mouse-click/&amp;title=Type+URL+without+mouse-click" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/type-url-without-mouse-click/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/type-url-without-mouse-click/&amp;t=Type+URL+without+mouse-click" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Type+URL+without+mouse-click+-+http://b2l.me/px3j7+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/type-url-without-mouse-click/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/type-url-without-mouse-click/&amp;title=Type+URL+without+mouse-click&amp;summary=Type%20URL%20without%20mouse-clickPress%C2%A0Alt%2BD%C2%A0on%20keyboard.This%20allows%20you%20to%20enter%20a%20URL%20without%20the%20mouse%20click.This%20will%20be%20helpful%20for%20the%20laptop%20users%20who%20find%20it%20uneasy%20to%20use%20their%20touchpad%20every%20time%20they%20want%20to%20type%20a%20URL.&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Type+URL+without+mouse-click&amp;du=http://magicalharsh.com/blog/type-url-without-mouse-click/&amp;cn=Type%20URL%20without%20mouse-clickPress%C2%A0Alt%2BD%C2%A0on%20keyboard.This%20allows%20you%20to%20enter%20a%20URL%20without%20the%20mouse%20click.This%20will%20be%20helpful%20for%20the%20laptop%20users%20who%20find%20it%20uneasy%20to%20use%20their%20touchpad%20every%20time%20they%20want%20to%20type%20a%20URL." rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/unable-to-save-files-from-mozilla/" title="Unable to save files from Mozilla (April 25, 2009)">Unable to save files from Mozilla</a> </li>
	<li><a href="http://magicalharsh.com/blog/speed-up-firefox/" title="Speed Up Firefox (April 22, 2009)">Speed Up Firefox</a> </li>
	<li><a href="http://magicalharsh.com/blog/remove-status-messages-in-y-messenger/" title="Remove Status messages in Y! Messenger (January 11, 2009)">Remove Status messages in Y! Messenger</a> </li>
	<li><a href="http://magicalharsh.com/blog/google-search-made-easy-download-mp3/" title="Google search made easy &#8211; Download MP3 (January 14, 2009)">Google search made easy &#8211; Download MP3</a> </li>
	<li><a href="http://magicalharsh.com/blog/access-orkut-through-a-proxy/" title="Access orkut through a proxy (November 19, 2008)">Access orkut through a proxy</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/type-url-without-mouse-click/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>retrieve password of memory card</title>
		<link>http://magicalharsh.com/blog/retrieve-password-of-memory-card/</link>
		<comments>http://magicalharsh.com/blog/retrieve-password-of-memory-card/#comments</comments>
		<pubDate>Mon, 11 Aug 2008 14:59:00 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[softwares]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=336</guid>
		<description><![CDATA[
			
				
			
		

Download : http://freakytrix.googlepages.com/MMCpwd.7z





		
			Stumble upon something good? Share it on StumbleUpon
		
		
			Share this on Technorati
		
		
			Share this on Facebook
		
		
			Tweet This!
		
		
			Subscribe to the comments for this post?
		
		
			Share this on LinkedIn
		
		
			Promote this on Orkut
		






	Related posts
	
	Yahoo Messenger Automater 
	yahoo messenger 9 beta 
	XoftSpy v4.15.108 
	XML Viewer 3.0 
	WinGet 2.1 


]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fretrieve-password-of-memory-card%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fretrieve-password-of-memory-card%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_q0kgZ1_xiKs/SKBUWGlRjQI/AAAAAAAAA5k/QsoF1JH9RTc/s1600-h/MMCPwd_6600_7610_SymBoSS.bmp"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://4.bp.blogspot.com/_q0kgZ1_xiKs/SKBUWGlRjQI/AAAAAAAAA5k/QsoF1JH9RTc/s400/MMCPwd_6600_7610_SymBoSS.bmp" alt="" id="BLOGGER_PHOTO_ID_5233275505705323778" border="0" /></a>
<div style="text-align: center;"><span style="color: rgb(255, 0, 0);">Download</span> : <a href="http://freakytrix.googlepages.com/MMCpwd.7z">http://freakytrix.googlepages.com/MMCpwd.7z</a></div>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/retrieve-password-of-memory-card/&amp;title=retrieve+password+of+memory+card" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/retrieve-password-of-memory-card/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/retrieve-password-of-memory-card/&amp;t=retrieve+password+of+memory+card" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=retrieve+password+of+memory+card+-+http://b2l.me/px3j6+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/retrieve-password-of-memory-card/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/retrieve-password-of-memory-card/&amp;title=retrieve+password+of+memory+card&amp;summary=Download%20%3A%20http%3A%2F%2Ffreakytrix.googlepages.com%2FMMCpwd.7z&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=retrieve+password+of+memory+card&amp;du=http://magicalharsh.com/blog/retrieve-password-of-memory-card/&amp;cn=Download%20%3A%20http%3A%2F%2Ffreakytrix.googlepages.com%2FMMCpwd.7z" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/yahoo-messenger-automater/" title="Yahoo Messenger Automater (June 18, 2008)">Yahoo Messenger Automater</a> </li>
	<li><a href="http://magicalharsh.com/blog/yahoo-messenger-9-beta/" title="yahoo messenger 9 beta (June 27, 2008)">yahoo messenger 9 beta</a> </li>
	<li><a href="http://magicalharsh.com/blog/xoftspy-v415108/" title="XoftSpy v4.15.108 (June 15, 2008)">XoftSpy v4.15.108</a> </li>
	<li><a href="http://magicalharsh.com/blog/xml-viewer-30/" title="XML Viewer 3.0 (June 8, 2008)">XML Viewer 3.0</a> </li>
	<li><a href="http://magicalharsh.com/blog/winget-21/" title="WinGet 2.1 (June 15, 2008)">WinGet 2.1</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/retrieve-password-of-memory-card/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make any icon / folder on your desktop invisible</title>
		<link>http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/</link>
		<comments>http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 13:22:00 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Hacks]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=333</guid>
		<description><![CDATA[
			
				
			
		
This is a trick by which you can make any icon invisible and can access it in the invisible state only &#8230;.. Its not altering the properties to hidden &#8230;&#8230; Here are the steps : 1. Locate the icon and then right click &#8230;.. go to properties &#8230;. then go to customize tab &#8230;.. there [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fmake-any-icon-folder-on-your-desktop-invisible-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fmake-any-icon-folder-on-your-desktop-invisible-2%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>This is a trick by which you can make any icon invisible and can access it in the invisible state only &#8230;.. Its not altering the properties to hidden &#8230;&#8230; Here are the steps : <span class="fullpost">1. Locate the icon and then right click &#8230;.. go to properties &#8230;. then go to customize tab &#8230;.. there will be a transparent(invisible) icon as shown in the screenshot &#8230;. select it and click on Apply&#8230;..</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp3.blogger.com/_q0kgZ1_xiKs/SI4jRH93ANI/AAAAAAAAA4s/VoYNL3TSRA0/s1600-h/1.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp3.blogger.com/_q0kgZ1_xiKs/SI4jRH93ANI/AAAAAAAAA4s/VoYNL3TSRA0/s400/1.jpg" alt="" id="BLOGGER_PHOTO_ID_5228154994526978258" border="0" /></a></p>
<p>2. Now rename the icon / folder</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_q0kgZ1_xiKs/SI4jXxkJ63I/AAAAAAAAA40/JlUkG3XDlkc/s1600-h/2.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_q0kgZ1_xiKs/SI4jXxkJ63I/AAAAAAAAA40/JlUkG3XDlkc/s400/2.jpg" alt="" id="BLOGGER_PHOTO_ID_5228155108772670322" border="0" /></a></p>
<p>press ALT + 255 &#8230;&#8230;&#8230;. (enter 255 from the right numpad with numlock off) &#8230;..</p>
<p>TADAA!!!!!</p>
<p><a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp0.blogger.com/_q0kgZ1_xiKs/SI4jbsNeMxI/AAAAAAAAA48/ompSG8I-4g4/s1600-h/3.jpg"><img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp0.blogger.com/_q0kgZ1_xiKs/SI4jbsNeMxI/AAAAAAAAA48/ompSG8I-4g4/s400/3.jpg" alt="" id="BLOGGER_PHOTO_ID_5228155176054829842" border="0" /></a></span></p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/&amp;title=Make+any+icon+%2F+folder+on+your+desktop+invisible" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/&amp;t=Make+any+icon+%2F+folder+on+your+desktop+invisible" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Make+any+icon+%2F+folder+on+your+desktop+invisible+-+http://b2l.me/q2srx+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/&amp;title=Make+any+icon+%2F+folder+on+your+desktop+invisible&amp;summary=This%20is%20a%20trick%20by%20which%20you%20can%20make%20any%20icon%20invisible%20and%20can%20access%20it%20in%20the%20invisible%20state%20only%20.....%20Its%20not%20altering%20the%20properties%20to%20hidden%20......%20Here%20are%20the%20steps%20%3A%201.%20Locate%20the%20icon%20and%20then%20right%20click%20.....%20go%20to%20properties%20....%20then%20go%20to%20customize%20tab%20.....%20there%20will%20be%20a%20transp&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Make+any+icon+%2F+folder+on+your+desktop+invisible&amp;du=http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/&amp;cn=This%20is%20a%20trick%20by%20which%20you%20can%20make%20any%20icon%20invisible%20and%20can%20access%20it%20in%20the%20invisible%20state%20only%20.....%20Its%20not%20altering%20the%20properties%20to%20hidden%20......%20Here%20are%20the%20steps%20%3A%201.%20Locate%20the%20icon%20and%20then%20right%20click%20.....%20go%20to%20properties%20....%20then%20go%20to%20customize%20tab%20.....%20there%20will%20be%20a%20transp" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/windows-startup-booster/" title="Windows Startup Booster (June 27, 2008)">Windows Startup Booster</a> </li>
	<li><a href="http://magicalharsh.com/blog/unable-to-open-d-by-double-clicking/" title="Unable to open D: by double clicking (October 3, 2008)">Unable to open D: by double clicking</a> </li>
	<li><a href="http://magicalharsh.com/blog/track-your-pc/" title="Track Your PC (June 6, 2008)">Track Your PC</a> </li>
	<li><a href="http://magicalharsh.com/blog/speed-up-the-start-menu/" title="Speed up the Start Menu (August 1, 2008)">Speed up the Start Menu</a> </li>
	<li><a href="http://magicalharsh.com/blog/speed-up-the-start-menu-2/" title="Speed up the Start Menu (August 6, 2008)">Speed up the Start Menu</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/make-any-icon-folder-on-your-desktop-invisible-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Speed up the Start Menu</title>
		<link>http://magicalharsh.com/blog/speed-up-the-start-menu-2/</link>
		<comments>http://magicalharsh.com/blog/speed-up-the-start-menu-2/#comments</comments>
		<pubDate>Wed, 06 Aug 2008 13:19:00 +0000</pubDate>
		<dc:creator>Harsh Singh</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[windows]]></category>

		<guid isPermaLink="false">http://magicalharsh.com/blog/?p=332</guid>
		<description><![CDATA[
			
				
			
		
The default speed of the Start Menu is pretty slow, but you can fix that by editing a Registry Key. Fire up the Registry Editor and navigate to the following key:
HKEY_CURRENT_USER  Control Panel  Desktop  MenuShowDelay
By default, the value is 400. Change this to a smaller value, such as 0, to speed it [...]]]></description>
			<content:encoded><![CDATA[<div class="tweetmeme_button" style="float: right; margin-left: 10px;">
			<a href="http://api.tweetmeme.com/share?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fspeed-up-the-start-menu-2%2F"><br />
				<img src="http://api.tweetmeme.com/imagebutton.gif?url=http%3A%2F%2Fmagicalharsh.com%2Fblog%2Fspeed-up-the-start-menu-2%2F&amp;source=magicalharsh&amp;style=normal" height="61" width="50" /><br />
			</a>
		</div>
<p>The default speed of the Start Menu is pretty slow, but you can fix that by editing a Registry Key. Fire up the Registry Editor and navigate to the following key:</p>
<p>HKEY_CURRENT_USER  Control Panel  Desktop  MenuShowDelay</p>
<p>By default, the value is 400. Change this to a smaller value, such as 0, to speed it up.</p>
<p>If this doesn&#8217;t work for some reason, then you might try the following: Navigate to Display Properties then Appearance then Effects and turn off the option titled Show menu shadow. You will get much better overall performance.</p>


<!-- Begin SexyBookmarks Menu Code -->
<div class="sexy-bookmarks sexy-bookmarks-expand sexy-bookmarks-bg-wealth">
<ul class="socials">
		<li class="sexy-stumbleupon">
			<a href="http://www.stumbleupon.com/submit?url=http://magicalharsh.com/blog/speed-up-the-start-menu-2/&amp;title=Speed+up+the+Start+Menu" rel="nofollow" title="Stumble upon something good? Share it on StumbleUpon">Stumble upon something good? Share it on StumbleUpon</a>
		</li>
		<li class="sexy-technorati">
			<a href="http://technorati.com/faves?add=http://magicalharsh.com/blog/speed-up-the-start-menu-2/" rel="nofollow" title="Share this on Technorati">Share this on Technorati</a>
		</li>
		<li class="sexy-facebook">
			<a href="http://www.facebook.com/share.php?v=4&amp;src=bm&amp;u=http://magicalharsh.com/blog/speed-up-the-start-menu-2/&amp;t=Speed+up+the+Start+Menu" rel="nofollow" title="Share this on Facebook">Share this on Facebook</a>
		</li>
		<li class="sexy-twitter">
			<a href="http://twitter.com/home?status=Speed+up+the+Start+Menu+-+http://b2l.me/px3j8+(via+@magicalharsh)&amp;source=shareaholic" rel="nofollow" title="Tweet This!">Tweet This!</a>
		</li>
		<li class="sexy-comfeed">
			<a href="http://magicalharsh.com/blog/speed-up-the-start-menu-2/feed" rel="nofollow" title="Subscribe to the comments for this post?">Subscribe to the comments for this post?</a>
		</li>
		<li class="sexy-linkedin">
			<a href="http://www.linkedin.com/shareArticle?mini=true&amp;url=http://magicalharsh.com/blog/speed-up-the-start-menu-2/&amp;title=Speed+up+the+Start+Menu&amp;summary=The%20default%20speed%20of%20the%20Start%20Menu%20is%20pretty%20slow%2C%20but%20you%20can%20fix%20that%20by%20editing%20a%20Registry%20Key.%20Fire%20up%20the%20Registry%20Editor%20and%20navigate%20to%20the%20following%20key%3AHKEY_CURRENT_USER%20%20Control%20Panel%20%20Desktop%20%20MenuShowDelayBy%20default%2C%20the%20value%20is%20400.%20Change%20this%20to%20a%20smaller%20value%2C%20such%20as%200%2C%20to%20speed%20&amp;source=Dark Horizon" rel="nofollow" title="Share this on LinkedIn">Share this on LinkedIn</a>
		</li>
		<li class="sexy-orkut">
			<a href="http://promote.orkut.com/preview?nt=orkut.com&amp;tt=Speed+up+the+Start+Menu&amp;du=http://magicalharsh.com/blog/speed-up-the-start-menu-2/&amp;cn=The%20default%20speed%20of%20the%20Start%20Menu%20is%20pretty%20slow%2C%20but%20you%20can%20fix%20that%20by%20editing%20a%20Registry%20Key.%20Fire%20up%20the%20Registry%20Editor%20and%20navigate%20to%20the%20following%20key%3AHKEY_CURRENT_USER%20%20Control%20Panel%20%20Desktop%20%20MenuShowDelayBy%20default%2C%20the%20value%20is%20400.%20Change%20this%20to%20a%20smaller%20value%2C%20such%20as%200%2C%20to%20speed%20" rel="nofollow" title="Promote this on Orkut">Promote this on Orkut</a>
		</li>
</ul>
<div style="clear:both;"></div>
</div>
<!-- End SexyBookmarks Menu Code -->


	<h4>Related posts</h4>
	<ul class="st-related-posts">
	<li><a href="http://magicalharsh.com/blog/windows-startup-booster/" title="Windows Startup Booster (June 27, 2008)">Windows Startup Booster</a> </li>
	<li><a href="http://magicalharsh.com/blog/unable-to-open-d-by-double-clicking/" title="Unable to open D: by double clicking (October 3, 2008)">Unable to open D: by double clicking</a> </li>
	<li><a href="http://magicalharsh.com/blog/track-your-pc/" title="Track Your PC (June 6, 2008)">Track Your PC</a> </li>
	<li><a href="http://magicalharsh.com/blog/speed-up-the-start-menu/" title="Speed up the Start Menu (August 1, 2008)">Speed up the Start Menu</a> </li>
	<li><a href="http://magicalharsh.com/blog/solving-counter-strike-idm-problem/" title="Solving Counter Strike + IDM problem (November 2, 2009)">Solving Counter Strike + IDM problem</a> </li>
</ul>

]]></content:encoded>
			<wfw:commentRss>http://magicalharsh.com/blog/speed-up-the-start-menu-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
