<?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>Tech Solutions &#187; Tips and Tricks</title>
	<atom:link href="http://www.compedia4us.com/category/tips-and-tricks/feed" rel="self" type="application/rss+xml" />
	<link>http://www.compedia4us.com</link>
	<description>Blogging &#124; Tech Tutorials &#124; Make Money Online &#124; Online Articles</description>
	<lastBuildDate>Fri, 09 Jul 2010 12:31:32 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Apply Linked Style to Your Web Pages Using CSS</title>
		<link>http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css</link>
		<comments>http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css#comments</comments>
		<pubDate>Fri, 09 Jul 2010 12:30:01 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[linked css style]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css</guid>
		<description><![CDATA[Ideally, you place styles in a separate document (a style sheet) that links to multiple pages so that the styles have global (site-wide) scope. The styles defined in this style sheet can then affect every page of your site, not just a single page or a single tag. This is the only method of the [...]]]></description>
			<content:encoded><![CDATA[<p>Ideally, you place styles in a separate document (a style sheet) that links to multiple pages so that the styles have global (site-wide) scope. The styles defined in this style sheet can then affect every page of your site, not just a single page or a single tag. This is the only method of the three that truly separates the presentational styles from the structural markup. </p>
<p><span id="more-5709"></span></p>
<p>If you centralize all your CSS styles in a style sheet in this way, Web site design and editing become much easier. For example, if you need to make changes that affect the whole site (”The client wants all the paragraph text to be blue, not black.”), doing so can be as quick and painless as modifying one CSS style. This is certainly much easier than the pre-CSS task of modifying every FONT attribute of every paragraph tag in every page of the site. </p>
<p align="center"><img style="border-bottom: 0px; border-left: 0px; display: inline; border-top: 0px; border-right: 0px" title="CSS" border="0" alt="CSS" src="http://www.compedia4us.com/wp-content/uploads/2010/07/CSS.png" width="446" height="271" /> </p>
<p>You can link your style sheet to as many XHTML pages as you want with a single line of code in the head of each XHTML page: </p>
<p>&lt;link href=&quot;my_style_sheet.css&quot; media=&quot;screen&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt; </p>
<p>Then the styles are applied to each page’s markup as the page loads. Note that, in the above link tag, the media attribute is defined as &quot;screen&quot;, meaning the style sheet is designed for the screen, which currently means Web browsers. (Certain user agents look for particular media attributes that best suit their display capabilities; possibilities here include: all, projection, handheld, print and aural. </p>
<p>See a full list on the W3 Schools site (<a href="http://www.w3schools.com/css/css_mediatypes.asp">www.w3schools.com/css/css_mediatypes.asp</a>). </p>
<p>A browser reads a style sheet where the link tag media attribute is all or screen. But by adding a second link tag with the media attribute of &quot;print&quot;, you can offer a second style sheet that the browser will use when printing. A style sheet for printing might hide navigational and other elements that don’t make sense when the content goes to paper. If you create a second style sheet for printing, its link tag might look   <br />like this </p>
<p>&lt;link href=&quot;my_style_sheet_print.css&quot; media=&quot;print&quot; rel=&quot;stylesheet&quot; type=&quot;text/css&quot; /&gt; </p>
<p>So now that you know what style sheets are, let’s look at how you write style sheet rules, and how concepts like Inheritance, Specificity, and the Cascade control how these rules affect your markup.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Embedded Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css" rel="bookmark" class="crp_title">Three Ways to Style Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml" rel="bookmark" class="crp_title">What Are The Basic Rules Of Writing XHTML</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls" rel="bookmark" class="crp_title">How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</a></li><li><a href="http://www.compedia4us.com/2010/03/make-a-video-from-powerpoint-presentation-%e2%80%93-how-to" rel="bookmark" class="crp_title">Make a Video from PowerPoint Presentation &ndash; How to</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Apply Embedded Style to Your Web Pages Using CSS</title>
		<link>http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css</link>
		<comments>http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css#comments</comments>
		<pubDate>Fri, 09 Jul 2010 12:16:00 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[embedded css style]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css</guid>
		<description><![CDATA[We have previously discussed about Inline CSS Styles to apply on Web Pages and this time we are going to discuss about the second way i.e Embedded CSS Style to apply on creating WebPages.&#160; You can place a group of CSS styles in the head of your XHTML document. These are known as embedded styles [...]]]></description>
			<content:encoded><![CDATA[<p>We have previously discussed about <a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css">Inline CSS Styles</a> to apply on Web Pages and this time we are going to discuss about the second way i.e Embedded CSS Style to apply on creating WebPages.&#160; You can place a group of CSS styles in the head of your XHTML document. These are known as embedded styles (or page styles) because they are part of the page (or embedded in it). Embedded styles work like this: </p>
<p><span id="more-5706"></span></p>
<p>&lt;head&gt; </p>
<p>&lt;title&gt;Embedded Styles example&lt;/title&gt; </p>
<p>&lt;meta http-equiv=&quot;Content-type&quot; content=&quot;text/html; charset=iso-8859-1&quot; /&gt; </p>
<p>&lt;meta http-equiv=&quot;Content-Language&quot; content=&quot;en-us&quot; /&gt; </p>
<p>&lt;style type=&quot;text/css&quot;&gt; </p>
<p>h1 {font-size: 16px;} </p>
<p>p {color:blue;} </p>
<p>&lt;/style&gt; </p>
<p>&lt;/head&gt; </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="cssembeddedstyle" border="0" alt="cssembeddedstyle" src="http://www.compedia4us.com/wp-content/uploads/2010/07/cssimg.gif" width="349" height="324" /> </p>
<p>The style tag tells the browser it is about to encounter code other than XHTML; the tag’s attribute states that the code is CSS. Here’s what you need to know about embedded (or page) styles: </p>
<ul>
<li>• The scope of embedded styles is limited to the page that contains the styles. </li>
<li>• If you are only publishing a single page with these particular styles, you can embed the styles in the head of the document, although you are not truly separating the styles from the content; they are still in the same document. You will become familiar with embedded styles as you follow along with the hands-on single-page examples in this chapter. </li>
<li>• If you are working up multiple styles for a complex layout such as a form, sometimes it’s easier to write the styles as embedded styles in the head of the document so that you don’t have to constantly switch between the markup and the style sheet. Then, once everything is working, you can move the styles into the main style sheet and replace the styles in the header with a link to the style sheet. </li>
<li>• Page styles override style sheet styles, but they lose out to attributes you define in inline styles. </li>
<li>• If you are sending an XHTML page to someone for a critique, it’s considerate to embed the CSS styles in the page, so the reviewer only has to open the page and everything works; however, for a Web site of any scale, there is really only one way to manage the CSS and that is in a style sheet that can be linked to all of the site’s pages.</li>
</ul>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css" rel="bookmark" class="crp_title">Three Ways to Style Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Linked Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml" rel="bookmark" class="crp_title">What Are The Basic Rules Of Writing XHTML</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls" rel="bookmark" class="crp_title">How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-control-your-computers-with-twitter" rel="bookmark" class="crp_title">How to Control your computers with Twitter</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Three Ways to Style Your Web Pages Using CSS</title>
		<link>http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css</link>
		<comments>http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css#comments</comments>
		<pubDate>Fri, 09 Jul 2010 11:59:15 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[css tutorials]]></category>
		<category><![CDATA[inline css style]]></category>
		<category><![CDATA[web designing]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css</guid>
		<description><![CDATA[There are three ways to add CSS to your Web pages: inline styles, embedded styles, and linked styles from a separate CSS style sheet. The only one that really makes any sense in terms of developing Web sites is to link your XHTML pages to a CSS style sheet, but we will examine the other [...]]]></description>
			<content:encoded><![CDATA[<p>There are three ways to add CSS to your Web pages: <a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css">inline styles</a>, <a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css">embedded styles</a>, and <a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css">linked styles</a> from a separate CSS style sheet. The only one that really makes any sense in terms of developing Web sites is to link your XHTML pages to a CSS style sheet, but we will examine the other two as well, as they can be useful while creating your pages. </p>
<p><span id="more-5703"></span></p>
<p>A style sheet can be linked to an infinite number of XHTML pages, which helps ensure a consistent look from page to page and allows edits made to a style to be instantly reflected across an entire site. </p>
<h2><u>Inline Styles </u></h2>
<p>Inline styles (also known as local styles) are added to a tag using the XHTML style attribute, like this </p>
<p>&lt;p&gt;This paragraph simply takes on the browser’s default paragraph style.&lt;/p&gt; </p>
<p>&lt;p style=&quot;font-size: 25pt; font-weight:bold; font-style:italic; color:red;&quot;&gt;By adding inline CSS styling to this paragraph, we can override the default styles.&lt;/p&gt; </p>
<p>&lt;p&gt;And now we are back to a regular default paragraph without any inline styles.&lt;/p&gt; </p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="inlinestyleexample" border="0" alt="inlinestyleexample" src="http://www.compedia4us.com/wp-content/uploads/2010/07/image.png" width="500" height="391" /> </p>
<p>Here are some things you need to know about inline styles: </p>
<ul>
<li>• Their scope is very restricted. An inline style only affects the tag to which it is attached. </li>
<li>• The practice of using inline styles is simply another way of putting presentational markup directly on the tags, as we did in days of yore. Adding inline styles everywhere is as bad for the portability and edit ability of your markup as adding deprecated HTML attributes, such as FONT. Inline styles should be generally avoided. </li>
<li>• On those rare occasions when you need to override a style in just one specific instance and there is no better way to do it, you can create an inline style and not feel too guilty about it. That said, you could almost always avoid using inline styles by adding a unique ID or class to the tag in question and then writing a corresponding style in your style sheet. </li>
<li>• Using an inline style is a good way to try out a style before you move it into the style sheet (see “Linked Styles” on the next page). Just remember to clear out the style attribute entirely once you achieve the effect you want and then cut and paste just the style itself into the style sheet. If you have it in the markup, that inline style will always override whatever change you try to make to that particular tag from the style sheet, and you can spend hours trying to fix the style sheet when the problem is, in fact, hidden in the markup. </li>
<li>• Inline styles override the same styles you define with embedded styles (described next), which override global styles you define in style sheets.</li>
</ul>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Embedded Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Linked Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml" rel="bookmark" class="crp_title">What Are The Basic Rules Of Writing XHTML</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls" rel="bookmark" class="crp_title">How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile" rel="bookmark" class="crp_title">How to Apply a Theme to your Twitter Profile</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Stop Twitter From Sending New Follower Messages</title>
		<link>http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2</link>
		<comments>http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2#comments</comments>
		<pubDate>Fri, 02 Jul 2010 13:32:52 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[articles]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[stop followers notification in twitter]]></category>
		<category><![CDATA[stop twitter sending messages]]></category>
		<category><![CDATA[twitter]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2</guid>
		<description><![CDATA[With all these great renovations you’ve been doing, it won’t be long before people start beating a path to your Twitter door. You’ll know right away if your custom design is a hit because Twitter sends you an e-mail message every time a kind soul decides to follow you. Personally, I love getting these messages [...]]]></description>
			<content:encoded><![CDATA[<p>With all these great renovations you’ve been doing, it won’t be long before people start beating a path to your Twitter door. You’ll know right away if your custom design is a hit because Twitter sends you an e-mail message every time a kind soul decides to follow you. Personally, I love getting these messages because it’s great to know that my tweets have a growing audience, and it also gives me a chance to check out lots of other profiles. </p>
<p><span id="more-5701"></span></p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="Follow me on Twitter_thumb" border="0" alt="Follow me on Twitter_thumb" src="http://www.compedia4us.com/wp-content/uploads/2010/07/FollowmeonTwitter_thumb1.jpg" width="400" height="250" /> </p>
<p>You never know who you might come across and decide to follow yourself. On the other hand, if your profile becomes quite popular, getting tons of messages from Twitter may not appeal to you. Similarly, you might be following as many people as you can handle, so you’re not interested in also following any of your new followers. If that’s the case, then you should follow these steps to tell Twitter to stop sending you an e-mail message each time someone follows you: </p>
<p>1. Sign in to your Twitter account. </p>
<p>2. Click Settings. The Settings page appears. </p>
<p>3. Click the Notices tab. </p>
<p>4. Deselect the Email when someone starts following me check box. </p>
<p>5. Click Save. Twitter updates your profile with the new setting</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile" rel="bookmark" class="crp_title">How To Apply A Customize Background Image On Your Twitter Profile</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile" rel="bookmark" class="crp_title">How to Apply a Theme to your Twitter Profile</a></li><li><a href="http://www.compedia4us.com/2010/05/twitter-has-decided-to-ban-the-third-party-ad-networks" rel="bookmark" class="crp_title">Twitter has decided to Ban the Third Party Ad Networks</a></li><li><a href="http://www.compedia4us.com/2009/10/tiny-twitter-a-best-way-to-tweet-on-your-mobile-phone" rel="bookmark" class="crp_title">Tiny Twitter &#8211; a best way to tweet on your mobile phone</a></li><li><a href="http://www.compedia4us.com/2009/10/vodafone-live-manual-settings-for-sony-ericsson-phones" rel="bookmark" class="crp_title">Vodafone live! manual settings for Sony Ericsson phones</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Improve Search Engine Ranking By Avoiding Common SEO Pitfalls</title>
		<link>http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls#comments</comments>
		<pubDate>Fri, 25 Jun 2010 14:03:14 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[SEO]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[improve website ranking]]></category>
		<category><![CDATA[search engine optimization]]></category>
		<category><![CDATA[Tutorials]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls</guid>
		<description><![CDATA[Search Engine Ranking is the basic concern of a web designer/developer and everyone who owns a website wants to be on the top of Search Engines. So the question is that how a website owner can improve its site ranking on major search engines like Google, Yahoo and Bing. Well certain website characteristics can harm [...]]]></description>
			<content:encoded><![CDATA[<p>Search Engine Ranking is the basic concern of a web designer/developer and everyone who owns a website wants to be on the top of Search Engines. So the question is that how a website owner can improve its site ranking on major search engines like Google, Yahoo and Bing. Well certain website characteristics can harm or limit your potential search engine rankings. By avoiding these common SEO pitfalls, you can pave the way for higher search engine visibility. </p>
<p><span id="more-5660"></span></p>
<h2><u>Inadequate inbound links</u> </h2>
<p>One of the biggest problems with low-ranking websites is a lack of popular inbound links. Without a healthy number of high-quality links that point back to your site, you’ll be at a disadvantage against a competitor who has more. Other linking issues include links to flagged sites, overuse of parameters, improper redirects, lack of keywords, and generic link text. </p>
<h2><u>Drowning in splash pages&#160; </u></h2>
<p>Splash pages are usually graphically rich pages designed to impress visitors or to direct them to alternative views of content, such as high- or low-bandwidth versions of a site. A “Skip Intro” link on a web page implicitly says that the page isn’t very important. The problem with splash pages—whether they include “Skip Intro”links or not—is that they are a wasted opportunity. Splash pages usually reside at the top of a site’s hierarchy. </p>
<p>Pages that are higher in your site hierarchy tend to get more links and more traffic than pages that are lower in your hierarchy check the below image. If visitors must click and if search engines must crawl farther to reach the real home page (i.e., what should be your top-level index page), you’ve put up a barrier to success.</p>
<p><img style="border-right-width: 0px; display: block; float: none; border-top-width: 0px; border-bottom-width: 0px; margin-left: auto; border-left-width: 0px; margin-right: auto" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image14.png" width="515" height="335" /> </p>
<h2><u>Flash fires </u></h2>
<p>Flash is installed on nearly every computer (98%) that accesses the Internet.8 This popularity has caused a conflagration of Flash gizmos on the Web. The problem with Flash is that search engines do not index it properly. We recommend using Flash to enhance the user experience, not to create it entirely. So, a Flash news ticker or embedded hotel reservation system is OK, but creating your entire site in Flash is not OK. </p>
<p>Following is a Flash SEO trick from Flash expert Gregory Cowley(<a href="http://gregorycowley.com/">http://gregorycowley.com/</a>). </p>
<blockquote><p>One technique you can use to make your Flash pages more SEO friendly is the two div trick. Use one div for the Flash movie, and the other with your HTML equivalent. Use JavaScript to hide the HTML DIV if the Flash plug-in is available, and the HTML is still available for search engines. This doesn’t work in complicated multi-page sites though. The key to a multi-page site, however, is to have all your text in an XML file outside of Flash.</p>
</blockquote>
<p>This code requires a FlashObject class, available at <a href="http://code.google.com/p/swfobject/">http://code.google.com/p/swfobject/</a></p>
<p>&lt;div id=&quot;flashcontent&quot;&gt; </p>
<p>This is replaced by the Flash content if the user has the correct version of the Flash plug-in installed. Place your HTML content in here and Google will index it just as it would normal HTML content (because it is HTML content!) Use HTML, embed images, anything you would normally place on an HTML page is fine.    <br />&lt;/div&gt; </p>
<p>&lt;script type=&quot;text/javascript&quot;&gt; </p>
<p>// &lt;![CDATA[ </p>
<p>var fo = new FlashObject(&quot;flashmovie.swf&quot;, &quot; flashmovie&quot;, &quot;00&quot;, &quot;300&quot;, &quot;8&quot;, &quot;#FF6600&quot;); </p>
<p>fo.write(&quot;flashcontent&quot;); </p>
<p>// ]]&gt; </p>
<p>&lt;/script&gt; </p>
<p>To avoid the appearance of cloaking, be sure to not change the textual content between the two divs. </p>
<h2><u>Unprofessional design </u></h2>
<p>A first impression of your website can take only milliseconds9 but will affect its long-term success. You wouldn’t go on a date poorly groomed and with dirty fingernails, right? Don’t make a similar mistake with your website. Having a professionally designed site is the most important factor for perceived web credibility. The higher the aesthetic quality of your site, the higher its perceived credibility will be. Consumers are more willing to buy from (and presumably webmasters are more willing to link to) firms with well-designed sites. </p>
<p>Web credibility, valuable content, and useful tools are key factors that compel webmasters to link to you, and visitors to stay and spend money. </p>
<p><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="SEOPackageConsulting-logos" border="0" alt="SEOPackageConsulting-logos" src="http://www.compedia4us.com/wp-content/uploads/2010/06/SEOPackageConsultinglogos.jpg" width="263" height="441" /> </p>
<h2><u>Fix your focus.&#160; </u></h2>
<p>Some sites do not focus specifically enough. A store that sells everything, or that wants to be the next Amazon.com, has a long, painful road ahead. Such a broadly focused site is unlikely to succeed in natural SEO and probably needs to advertise with pay-per-click (PPC). It’s best to narrow your focus topically or geographically so that you have a better chance of ranking well and having higher conversion rates. There is one exception to this rule, however. If you can optimize every individual product page (e.g., HP LaserJet 6MP printer replacement toner cartridge C3903), it is possible to rank highly for those very specific terms. </p>
<h2><u>Obscure navigation </u></h2>
<p>The navigation on your site should comprise text that is easily indexed and that wasn’t created from graphical text, JavaScript, or Flash. Search engines can only index the text within your pages. They don’t read text that is embedded in graphics or Flash movies, nor do they execute JavaScript. A reasonable compromise for image-based navigation is to include alternative text for images. </p>
<h2><u>Give up graphics-based navigation. </u></h2>
<p>Macromedia Fireworks (now owned by Adobe) and Adobe ImageReady popularized the automatic slicing of graphics that made creating fancy navigation menus easy. Search engines don’t read graphical text, however. By embedding your keywords in graphics, you lose a golden opportunity to bake your SEO directly into the information architecture of your site. </p>
<h2><u>Junk JavaScript-only navigation. </u></h2>
<p>Avoid JavaScript-only navigation such as this: </p>
<p>&lt;script src=&quot;/scripts/menunav.js&quot; type=&quot;text/javascript&quot;&gt; </p>
<p>Switch to list-based Cascading Style Sheet (CSS)-style menus or provide a text equivalent to your navigation elsewhere on the page for search engines to follow. </p>
<h2><u>Duplicate content </u></h2>
<p>Avoid exact or near duplicates of pages at different URIs. Although Google engineer Matt Cutts has said that there is no penalty for duplicate content, Google’s own webmaster guidelines say “don’t create multiple pages, sub-domains, or domains with substantially duplicate content.” Google generally tries to display the best version of a resource, but in rare cases it can penalize a site that appears to game the system with duplicate content The use of duplicate titles and meta tags across too many pages on the same site can harm rankings. Duplicate content will confuse the Googlebot as to which page is authoritative, thereby diluting your PageRank among the various URIs. You can use the robots exclusion protocol to exclude duplicate content (see http://www.robotstxt.org/orig.html). </p>
<p>On the other hand, creating mini sites, each with valuable content on a different topic related to your business, is one way around the two-URIs-per-domain limit to Google SERPs. Some companies buy domain names for each product or service, create and promote separate websites, and attain multiple top 10 spots on the first SERP. We don’t recommend using this technique of creating multiple sites to crowd all of your competitors off the first SERP.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Linked Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-embedded-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Embedded Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/seo-search-engine-optimization-and-the-benefits-of-seo" rel="bookmark" class="crp_title">SEO (Search Engine Optimization) and the Benefits of SEO</a></li><li><a href="http://www.compedia4us.com/2010/07/three-ways-to-style-your-web-pages-using-css" rel="bookmark" class="crp_title">Three Ways to Style Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/what-are-the-basic-rules-of-writing-xhtml" rel="bookmark" class="crp_title">What Are The Basic Rules Of Writing XHTML</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-improve-search-engine-ranking-by-avoiding-common-seo-pitfalls/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>How To Apply A Customize Background Image On Your Twitter Profile</title>
		<link>http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile#comments</comments>
		<pubDate>Thu, 24 Jun 2010 12:24:41 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apply custom background]]></category>
		<category><![CDATA[customize twitter background]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[twitter]]></category>
		<category><![CDATA[twitter tips]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile</guid>
		<description><![CDATA[If you want to ramp up the “wow” factor, if you want to use your Twitter profile as part of a personal or business branding strategy, or if you just want a Twitter home that truly reflects your style and personality, then you need to augment your design with a custom background image. You might [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">If you want to ramp up the “wow” factor, if you want to use your Twitter profile as part of a personal or business branding strategy, or if you just want a <a href="http://www.compedia4us.com/tag/twitter">Twitter</a> home that truly reflects your style and personality, then you need to augment your design with a custom background image. You might think this is just a simple matter of uploading your favorite photo, but Twitter offers several unique challenges when it comes to selecting a background image. </p>
<p><span id="more-5648"></span></p>
<p align="justify"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="image" border="0" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image13.png" width="559" height="368" /> </p>
<p align="justify">Run through the steps you need to follow to apply a custom background image to your Twitter profile: </p>
<ol>
<li>
<div align="justify">Sign in to your Twitter account. </div>
</li>
<li>
<div align="justify">Click Settings. The Settings page appears. </div>
</li>
<li>
<div align="justify">Click the Design tab. </div>
</li>
<li>
<div align="justify">Click Change background image. </div>
</li>
<li>
<div align="justify">Click Browse. If you’re using Safari, click Choose File, instead. A file selection dialog box appears. </div>
</li>
<li>
<div align="justify">Choose the file you want to use, and then click Open (or Choose in Safari). You can use either a JPEG or a PNG file, and the maximum size is 800KB. </div>
</li>
<li>
<div align="justify">If you want Twitter to tile the image to cover the background, select the Tile background check box. </div>
</li>
<li>
<div align="justify">Click Save Changes. Twitter updates your profile with the new background image.</div>
</li>
</ol>
<blockquote><p align="justify"><font color="#ff0000">IMPORTANT :-</font> After you save your profile, you might end up on the “Something is technically wrong” page or even the fail whale page. This is an annoyingly common problem, and the best solution is to keep refreshing your browser until Twitter gets its act together. Note that when you refresh, your browser asks whether you want to resubmit the form, so be sure to choose yes.</p>
</blockquote>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile" rel="bookmark" class="crp_title">How to Apply a Theme to your Twitter Profile</a></li><li><a href="http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2" rel="bookmark" class="crp_title">How to Stop Twitter From Sending New Follower Messages</a></li><li><a href="http://www.compedia4us.com/2009/10/now-easily-make-yourself-a-cs-1-6-spray-logo" rel="bookmark" class="crp_title">Now Easily make yourself Counter Strike 1.6 spray logo</a></li><li><a href="http://www.compedia4us.com/2009/10/tiny-twitter-a-best-way-to-tweet-on-your-mobile-phone" rel="bookmark" class="crp_title">Tiny Twitter &#8211; a best way to tweet on your mobile phone</a></li><li><a href="http://www.compedia4us.com/2010/05/twitter-has-decided-to-ban-the-third-party-ad-networks" rel="bookmark" class="crp_title">Twitter has decided to Ban the Third Party Ad Networks</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>How to Set Up a Multilink Modem Connection in Windows XP</title>
		<link>http://www.compedia4us.com/2010/06/how-to-set-up-a-multilink-modem-connection-in-windows-xp</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-set-up-a-multilink-modem-connection-in-windows-xp#comments</comments>
		<pubDate>Sat, 19 Jun 2010 14:14:30 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows Solutions]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[set up multilink modem connection]]></category>
		<category><![CDATA[windows tips]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-set-up-a-multilink-modem-connection-in-windows-xp</guid>
		<description><![CDATA[If DSL, cable, or optical fiber isn&#8217;t available where you live, multilink modems or ISDN channels can make a worthwhile difference to your connection speed. With multilink ISDN, you get the aggregate bandwidth you&#8217;d expect. For example, two 64 Kbps channels will give you 128 Kbps. With multilink analog modems, you get a bit less [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">If DSL, cable, or optical fiber isn&#8217;t available where you live, multilink modems or ISDN channels can make a worthwhile difference to your connection speed. With multilink ISDN, you get the aggregate bandwidth you&#8217;d expect. For example, two 64 Kbps channels will give you 128 Kbps. With multilink analog modems, you get a bit less than the aggregate because there&#8217;s some overhead, but you get a significant increase in speed. You need a phone line (or ISDN channel) for each device you&#8217;re using (or an ISDN terminal adapter handling two ISDN channels), and your ISP has to support multilink.</p>
<p><span id="more-5607"></span></p>
<p align="justify">
<h2>Set Up a Multilink Modem Connection</h2>
<p>To set up a multilink modem connection, install and configure each modem involved as usual. Use HyperTerminal or Phone Dialer to make sure each modem and phone line is working. Then open the Properties dialog box for the connection and take the following steps: </p>
<p>1. On the General page, shown here, select the check box in the Connect Using list box for each modem you want to use for the connection. (In most cases, this means using both your modems.)</p>
<p><img title="image" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="400" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image6.png" width="340" border="0" /></p>
<p>2. If all the modems will call the same phone number to establish the multilinked connection, leave the All Devices Call the Same Numbers check box selected, as it is by default, and leave the existing phone number and dialing information as it is in the Phone Number group box. If the modems will dial different numbers, clear the All Devices Call the Same Numbers check box, select each modem in turn, and specify the phone number and dialing information for the modem. </p>
<p>3. On the Options page of the Properties dialog box for the connection, shown next, use the Multiple Devices drop-down list to specify how to dial the modems. The default setting is Dial All Devices, which automatically dials all the modems each time you establish the connection. The Dial Devices Only As Needed setting dials the modems according to the conditions you specify (see the next step). The Dial Only First Available Device setting lets you establish a single-line connection using whichever line is available;it&#8217;s primarily useful when you&#8217;re sharing phone lines with other people (or with your voice calls).</p>
<p><img title="image" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="416" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image7.png" width="353" border="0" /> </p>
<p>4. If you selected the Dial Devices Only As Needed setting in the Multiple Devices dropdown list, configure automatic dialing and hanging up as described in the section after   <br />next. </p>
<p>5. Click the OK button to close the Automatic Dialing and Hanging Up dialog box and then click the OK button to close the Properties dialog box for the connection.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2009/10/broadband-high-speed-internet-connection-needed-for-making-video-calls" rel="bookmark" class="crp_title">Broadband High-Speed Internet Connection needed for making Video Calls</a></li><li><a href="http://www.compedia4us.com/2010/06/definition-of-signaling-and-information-content-and-what-is-broadband-signaling" rel="bookmark" class="crp_title">Definition of Signaling And Information Content And What Is Broadband Signaling</a></li><li><a href="http://www.compedia4us.com/2010/06/get-broadband-in-australia-via-harboursat-an-affordable-satellite-internet-provider" rel="bookmark" class="crp_title">Get Broadband in Australia via HarbourSat &ndash; An Affordable Satellite Internet Provider</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-install-windows-xp-professional-using-an-existing-operating-system" rel="bookmark" class="crp_title">How to Install Windows XP Professional Using an Existing Operating System</a></li><li><a href="http://www.compedia4us.com/2009/11/multilink-communications-products" rel="bookmark" class="crp_title">Multilink Communications Products</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-set-up-a-multilink-modem-connection-in-windows-xp/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Apply a Theme to your Twitter Profile</title>
		<link>http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile#comments</comments>
		<pubDate>Thu, 17 Jun 2010 18:03:40 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Social Networking]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[apply theme to twitter]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[twitter theme]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile</guid>
		<description><![CDATA[Most of the people are familiar with twitter as a demanding social networking site and they also know that how to use a twitter account but still many people are not aware of many features of twitter and even many beginners are not familiar with the initial customization of their twitter profile . This time [...]]]></description>
			<content:encoded><![CDATA[<p>Most of the people are familiar with twitter as a demanding <a href="http://www.compedia4us.com/tag/social-networking">social networking</a> site and they also know that how to use a twitter account but still many people are not aware of many features of twitter and even many beginners are not familiar with the initial customization of their twitter profile . This time were are here to guide you about how you can apply a theme of your own choice to your twitter profile. Because after signing-up to the twitter account you surely want to see your profile good and want others to be attract with your profile too.</p>
<p><span id="more-5592"></span></p>
<p align="center"><img title="twitter-bird" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="412" alt="twitter-bird" src="http://www.compedia4us.com/wp-content/uploads/2010/06/twitterbird.jpg" width="400" border="0" /> </p>
<p>Initially your fresh-out-of-the-box Twitter account sets up your pages to use a collection of colors and images that are the same for all new accounts includes:- </p>
<ul>
<li>The page background is light blue. </li>
<li>The page background shows faint cloud-like images. </li>
<li>The sidebar uses a light green background. </li>
<li>The sidebar border is a slightly darker green. </li>
<li>The links are a darker blue. </li>
<li>The text is dark gray.</li>
</ul>
<p>But this it so natural&#160; that&#160; after taken together, about half dozen items comprise the profile’s theme. You will not prefer to stuck with the default theme. If you want to give your <a href="http://twitter.com/mobicrunch">Twitter profile</a> a different look, you can apply one of the dozen prefab themes that Twitter provides, or you can take an even more customized approach by choosing your own theme components. </p>
<p><em>Follow these steps to apply new theme to your Twitter Profile :-</em></p>
<ul>
<li>Sign in to your Twitter account. </li>
<li>Click Settings. The Settings page appears. </li>
<li>Click the Design tab. </li>
<li>In the Select a theme area, click a theme that looks promising. Twitter applies the     <br />theme temporarily. </li>
</ul>
<p align="center"><img title="image" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="401" alt="image" src="http://www.compedia4us.com/wp-content/uploads/2010/06/image5.png" width="548" border="0" /> </p>
<ul>
<li>Repeat step 4 until you find a theme that suits you. </li>
<li>Click Save Changes. Twitter updates your profile with the new theme.</li>
</ul>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile" rel="bookmark" class="crp_title">How To Apply A Customize Background Image On Your Twitter Profile</a></li><li><a href="http://www.compedia4us.com/2010/07/how-to-stop-twitter-from-sending-new-follower-messages-2" rel="bookmark" class="crp_title">How to Stop Twitter From Sending New Follower Messages</a></li><li><a href="http://www.compedia4us.com/2010/05/twitter-has-decided-to-ban-the-third-party-ad-networks" rel="bookmark" class="crp_title">Twitter has decided to Ban the Third Party Ad Networks</a></li><li><a href="http://www.compedia4us.com/2009/10/tiny-twitter-a-best-way-to-tweet-on-your-mobile-phone" rel="bookmark" class="crp_title">Tiny Twitter &#8211; a best way to tweet on your mobile phone</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-control-your-computers-with-twitter" rel="bookmark" class="crp_title">How to Control your computers with Twitter</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-apply-a-theme-to-your-twitter-profile/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Install Windows XP Professional Using an Existing Operating System</title>
		<link>http://www.compedia4us.com/2010/06/how-to-install-windows-xp-professional-using-an-existing-operating-system</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-install-windows-xp-professional-using-an-existing-operating-system#comments</comments>
		<pubDate>Wed, 16 Jun 2010 12:10:33 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Windows Solutions]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[install windows xp]]></category>
		<category><![CDATA[installation guide]]></category>
		<category><![CDATA[Windows solution]]></category>
		<category><![CDATA[windows xp]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-install-windows-xp-professional-using-an-existing-operating-system</guid>
		<description><![CDATA[There are various methods of installing Windows XP Professional on your Computer System. The very first method is to Install Windows XP using&#160; CD-Rom but here we are going to tell you about how you can install Windows XP using the existing OS of Win XP in your Computers. Suppose If your computer does not [...]]]></description>
			<content:encoded><![CDATA[<p>There are various methods of installing Windows XP Professional on your Computer System. The very first method is to Install Windows XP using&#160; CD-Rom but here we are going to tell you about how you can <a href="http://www.compedia4us.com/tag/install-windows-xp">install Windows XP</a> using the existing OS of Win XP in your Computers. Suppose If your computer does not boot from a CD-ROM, or if there is already an operating system loaded on your computer, you can install Windows XP Professional from a CD-ROM without having to boot from the Windows XP Professional installation CD-ROM.</p>
<p><span id="more-5498"></span></p>
<p><img title="67397-click-perform-additional-tasks" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="445" alt="67397-click-perform-additional-tasks" src="http://www.compedia4us.com/wp-content/uploads/2010/06/67397clickperformadditionaltasks.jpg" width="528" border="0" /> </p>
<p>Here are some necessary steps below which you have to follow :- </p>
<p>1. If there is an operating system currently installed on your computer, start the computer, log on as an administrator, and insert the Windows XP Professional CDROM into the CD-ROM drive. </p>
<p>2. When the Welcome To Microsoft Windows XP page appears, click Install Windows XP. </p>
<p>3. If you see a Windows Setup message box indicating that the version of the operating system cannot be upgraded and that option to upgrade will not be available, click OK. </p>
<p>4. On the Welcome To Setup page in the Installation Type box, click New Installation (Advanced), and then click Next. </p>
<p>5. On the License Agreement page, read the license agreement, select I Accept This Agreement, and then click Next. </p>
<p>6. On the Your Product Key page, type in your 25-character product key, and then click Next. </p>
<p>7. The Setup Options page allows you to configure the following three options: </p>
<blockquote><p>❑ Advanced Options Allows you to control where the installation files are obtained, where the installation files are copied to, whether or not to copy all installation files to the hard disk, and whether or not you want to specify the drive letter and partition during Setup. </p>
<p>❑ Accessibility Options Gives you the option of using the Microsoft Magnifier during Setup to display an enlarged portion of the screen in a separate window for users with limited vision and the option of using the Microsoft Narrator to read the contents of the screen for users who are blind. </p>
<p>❑ Select The Primary Language And Region You Want To Use Allows you to specify the primary language and region you use. </p>
</blockquote>
<p><img title="how-to-install-windows-xp" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="451" alt="how-to-install-windows-xp" src="http://www.compedia4us.com/wp-content/uploads/2010/06/howtoinstallwindowsxp.jpg" width="538" border="0" /> </p>
<p>8. After you have configured any required Setup options, click Next. </p>
<p>9. Setup displays the Get Updated Setup Files dialog box. If your computer has access to the Internet, you might want to ensure that the Yes, Download The Updated Setup Files (Recommended) check box is selected, and then click Next. Otherwise, select No, Skip This Step And Continue Installing Windows, and then click Next. </p>
<p>10. If your partition is not currently formatted with Windows XP Professional NTFS, the Setup Wizard displays the Upgrade To The Windows NTFS File System page. If you get the Upgrade To The Windows NTFS File System page, ensure that Yes, Upgrade My Drive is selected, and then click Next.</p>
<blockquote><p><em><strong>Important :-</strong> If you plan to dual boot your computer with an operating system that does not support NTFS, your C drive cannot be formatted with NTFS. You might want to install Windows XP Professional in a different drive, and then format that drive with NTFS. If you install Windows XP Professional on a drive other than the C drive, you must be sure you are using the correct drive for the rest of the practices in the training kit.</em></p>
</blockquote>
<p>11. If you are installing an Evaluation Edition of Windows XP Professional, the Setup Wizard displays the Setup Notification page, informing you that this is an evaluation version. If Setup displays the Setup Notification screen, press ENTER to continue. </p>
<p>12. On the Welcome To Setup page, press ENTER to install Windows XP Professional.</p>
<blockquote><p><em><strong>Note:- </strong>You can also delete partitions at this time. If you have a C partition, you might not be able to delete it because Setup has already loaded some files onto it. The partition you choose to use must be at least 2000 MB in size. If you cannot use the C partition to install Windows XP Professional, you must replace the C partition in all following practices in this training kit with the appropriate partition, the one on which you install Windows XP Professional.</em></p>
</blockquote>
<p>13. The Setup Wizard prompts you to select an area of free space on an existing partition to install Windows XP Professional. Select the C partition. The Setup Wizard displays the following message: You Chose To Install Windows XP On A Partition That Contains Another Operating System. Installing Windows XP Professional On This Partition Might Cause The Other Operating System To Function Improperly. </p>
<p>14. Press C to have Setup continue and use this partition.</p>
<blockquote><p><em><strong>Caution </strong>Depending on the operating system currently installed on the C partition, Setup might display the following message: A Windows Folder Already Exists That May Contain A Windows Installation. If You Continue, The Existing Windows Installation Will Be Overwritten. If You Want To Keep Both Operating Systems, Press Esc And Specify A Different Folder To Use.</em></p>
</blockquote>
<p>15. If you get a warning about a Windows folder already existing, press L to use the folder and delete the installation in it. If your partition was not formatted with NTFS and you choose to have the partition formatted as NTFS, Setup formats it as NTFS, and then copies files. Otherwise, Setup examines the partition and then copies files. </p>
<p>16. The Setup Wizard reboots the computer and continues to copy files in GUI mode, after which it displays the Regional And Language Options page. Select the appropriate system locale, user locale, and keyboard layout (or ensure that they are correct for your language and location), and then click Next. </p>
<p>17. Setup displays the Personalize Your Software page, prompting you for your name and your organization name. The Setup Wizard uses your organization name to generate the default computer name. Many applications that you install later will use this information for product registration and document identification. In the Name text box, type your name. In the Organization text box, type the name of your organization, and then click Next. </p>
<p>18. The Setup Wizard displays the Computer Name And Administrator Password page.   <br />Type a name for the computer in the Computer Name text box.</p>
<blockquote><p><strong>Important</strong> If your computer is on a network, check with the network administrator before assigning a name to your computer.</p>
</blockquote>
<p>19. In the Administrator Password text box and in the Confirm Password text box, type a password, and then click Next. </p>
<p>20. Depending on your computer configuration, the Setup Wizard might display the Modem Dialing Information page. Configure the following information: </p>
<blockquote><p>❑ Ensure that the correct country or region is selected. </p>
<p>❑ Type the correct area code or city code. </p>
<p>❑ If you dial a number to get an outside line, type the number. </p>
<p>❑ Ensure that the correct dialing tone is selected, and then click Next. </p>
</blockquote>
<p>21. The Setup Wizard displays the Date And Time Settings page. If necessary, select the time zone for your location from the Time Zone drop-down list, and adjust the date and the time. Ensure that the Automatically Adjust Clock For Daylight Saving Changes check box is selected if you want Windows XP Professional to automatically adjust the time on your computer for daylight savings time, and then click Next. </p>
<p>22. Ensure that Typical Settings is selected, and then click Next. </p>
<p>23. On the Workgroup Or Computer Domain page, ensure that the No, This Computer Is Not On A Network, Or Is On A Network Without A Domain option is selected, make sure that the workgroup name is Workgroup, and then click Next. </p>
<p>24. The Setup Wizard configures the networking components and then copies files, installs Start menu items, registers components, saves settings, and removes temporary files. This process takes several minutes. </p>
<p>25. The computer restarts, and Windows XP Professional starts for the first time.</p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/02/how-to-install-windows-xp-professional-from-an-existing-operating-system" rel="bookmark" class="crp_title">How to Install Windows XP Professional from an Existing Operating System</a></li><li><a href="http://www.compedia4us.com/2009/11/guideline-for-joining-a-domain-or-workgroup-while-installing-windows-xp" rel="bookmark" class="crp_title">Guideline for Joining a Domain or Workgroup while installing Windows XP</a></li><li><a href="http://www.compedia4us.com/2009/11/how-to-create-a-password-reset-disk-in-windows-xp" rel="bookmark" class="crp_title">How to Create a Password Reset Disk in Windows XP</a></li><li><a href="http://www.compedia4us.com/2009/11/convert-fat-or-fat32-partition-into-ntfs-using-command-prompt-in-xp" rel="bookmark" class="crp_title">Convert FAT or FAT32 Partition into NTFS using Command Prompt in XP</a></li><li><a href="http://www.compedia4us.com/2009/11/how-to-use-a-password-reset-disk-in-windows-xp" rel="bookmark" class="crp_title">How to Use a Password Reset Disk in Windows XP</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-install-windows-xp-professional-using-an-existing-operating-system/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Recover Deleted and Lost Partitions with MiniTool Partition Recovery</title>
		<link>http://www.compedia4us.com/2010/06/how-to-recover-deleted-and-lost-partitions-with-minitool-partition-recovery</link>
		<comments>http://www.compedia4us.com/2010/06/how-to-recover-deleted-and-lost-partitions-with-minitool-partition-recovery#comments</comments>
		<pubDate>Mon, 07 Jun 2010 15:21:21 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows Solutions]]></category>
		<category><![CDATA[delete partition]]></category>
		<category><![CDATA[freeware]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[lost partition]]></category>
		<category><![CDATA[minitool partition recovery]]></category>
		<category><![CDATA[partition recovery]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/how-to-recover-deleted-and-lost-partitions-with-minitool-partition-recovery</guid>
		<description><![CDATA[It happen many times with us that due to corrupt partition table entries or unexpected crashes we lose our partitions in Windows. This one be the most problematic moment for us because many of us keeps important data in our hard drive partitions. In order to solve this serious problem we are here to bring [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">It happen many times with us that due to corrupt partition table entries or unexpected crashes we lose our partitions in Windows. This one be the most problematic moment for us because many of us keeps important data in our hard drive partitions. In order to solve this serious problem we are here to bring a great tool dubbed as “MiniTool Partition Recovery”. It is a freeware software by which we can easily recover our deleted or lost partitions.</p>
<p><span id="more-5310"></span></p>
<p align="justify"><img title="recovery2_1" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="429" alt="recovery2_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/recovery2_1.jpg" width="538" border="0" /></p>
<p align="justify">With this <a href="http://www.compedia4us.com/tag/freeware">freeware application</a> you will be able to recover your partitions from SATA disk, SCSI disk, IDE Disk and Removable Disk. It can quickly recover the partitions and it supports approx all the partition systems like FAT(12, 16 and 32) NTFS and NTFS4 file systems.</p>
<p align="justify">You will find three different modes of scanning in this tool </p>
<p align="justify">1- Full Disk</p>
<p align="justify">2- Unallocated Space</p>
<p align="justify">3 Specified Range</p>
<p align="center"><img title="recovery3_1" style="border-right: 0px; border-top: 0px; display: inline; border-left: 0px; border-bottom: 0px" height="443" alt="recovery3_1" src="http://www.compedia4us.com/wp-content/uploads/2010/06/recovery3_1.jpg" width="546" border="0" /> </p>
<p align="justify">You can easily run MiniTool Partition Recovery under 32bit / 64 bit Operating Systems of Windows (2000 / XP / Vista) and Windows 7 also. You must try this tool because personally speaking it is an awesome free to download partition recovery tool.</p>
<p align="justify"><a href="http://www.minitool-partitionrecovery.com/download/minitool-partrecovery.exe">Download MiniTool Partition Recovery From Here</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2009/10/finaldata-enterprise-a-best-way-for-data-recovery" rel="bookmark" class="crp_title">FinalData Enterprise&rlm; &ndash; A best way for Data Recovery</a></li><li><a href="http://www.compedia4us.com/2009/09/now-ease-your-data-recovery-from-any-hard-drive-from-any-operating-system" rel="bookmark" class="crp_title">Now Ease your Data Recovery from any Hard drive from any Operating System</a></li><li><a href="http://www.compedia4us.com/2009/11/how-to-use-a-password-reset-disk-in-windows-xp" rel="bookmark" class="crp_title">How to Use a Password Reset Disk in Windows XP</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-recover-excel-password" rel="bookmark" class="crp_title">How to recover excel password</a></li><li><a href="http://www.compedia4us.com/2010/04/now-erase-data-from-your-hard-disk-securely-with-roadkils-disk-wipe" rel="bookmark" class="crp_title">Now Erase Data from Your Hard Disk Securely with Roadkil&rsquo;s Disk Wipe</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/how-to-recover-deleted-and-lost-partitions-with-minitool-partition-recovery/feed</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Disable The Taskbar Thumbnails For Individuals In Internet Explorer 8 for Windows 7</title>
		<link>http://www.compedia4us.com/2010/06/disable-the-taskbar-thumbnails-for-individuals-in-internet-explorer-8-for-windows-7</link>
		<comments>http://www.compedia4us.com/2010/06/disable-the-taskbar-thumbnails-for-individuals-in-internet-explorer-8-for-windows-7#comments</comments>
		<pubDate>Sun, 06 Jun 2010 20:02:16 +0000</pubDate>
		<dc:creator>shayan-cool</dc:creator>
				<category><![CDATA[Browsers]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows Solutions]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[How to Disable Thumbnail Previews on Windows 7 Taskbar in IE8]]></category>
		<category><![CDATA[Internet Explorer 8]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/06/disable-the-taskbar-thumbnails-for-individuals-in-internet-explorer-8-for-windows-7</guid>
		<description><![CDATA[The thumbnails feature in Windows 7&#160; is no doubt a great feature but sometimes it becomes annoying when many tabs are open at a time and it is very difficult for us to recognize them. Internet Explorer also supports the thumbnails feature and previews all the open tabs in Windows 7. Disabling this feature can [...]]]></description>
			<content:encoded><![CDATA[<p>The thumbnails feature in Windows 7&#160; is no doubt a great feature but sometimes it becomes annoying when many tabs are open at a time and it is very difficult for us to recognize them. Internet Explorer also supports the thumbnails feature and previews all the open tabs in Windows 7. Disabling this feature can solve your problem, but many of us are unaware of the procedure to disable this option, So below guide will teach you how to disable the thumbnail option in Internet Explorer 8 for windows 7. </p>
<p><span id="more-5305"></span></p>
<p><img title="Settings12" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="463" alt="Settings12" src="http://www.compedia4us.com/wp-content/uploads/2010/06/Settings12.png" width="364" border="0" /></p>
<p>Just open the Internet Explorer 8 and select tools &gt; internet options. After this, select the general tab and click on the settings under the tabs sub-group. Now in the tabs settings just uncheck the box which says “ Show previews for individuals tabs in taskbar” and click ok. This alteration requires you to restart your internet explorer to apply the settings. This procedure is easy to follow and requires no additional program to carry on the task, you just have to change the internal settings of the internet explorer 8 and can see only one thumbnail preview even you have more than one tabs opened at a time.</p>
<p><img title="Tabbedbrowsingsettings" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="437" alt="Tabbedbrowsingsettings" src="http://www.compedia4us.com/wp-content/uploads/2010/06/Tabbedbrowsingsettings.png" width="369" border="0" /></p>
<p>Via-<a href="http://www.nirmaltv.com/2010/06/05/how-to-disable-thumbnail-previews-on-windows-7-taskbar-in-ie8/?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed:+LifeRocks20+(Life+Rocks+2.0)">Nirmaltv</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2009/09/how-you-can-enable-or-disable-the-cookies-in-windows" rel="bookmark" class="crp_title">How you can Enable or Disable the Cookies in Windows</a></li><li><a href="http://www.compedia4us.com/2009/08/save-open-tabs-in-google-chrome-and-restore-back-when-google-chrome-restart" rel="bookmark" class="crp_title">Save Open Tabs in Google Chrome and Restore back when Google Chrome Restart</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-solve-the-delayed-startup-issue-in-firefox-3-5" rel="bookmark" class="crp_title">How to Solve the delayed startup issue in Firefox 3.5</a></li><li><a href="http://www.compedia4us.com/2009/08/now-view-thumbnail-images-automatically-in-explorer" rel="bookmark" class="crp_title">Now view Thumbnail images Automatically in Explorer</a></li><li><a href="http://www.compedia4us.com/2009/01/keyboard-shortcuts-of-windows-7" rel="bookmark" class="crp_title">Keyboard Shortcuts of Windows 7</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/06/disable-the-taskbar-thumbnails-for-individuals-in-internet-explorer-8-for-windows-7/feed</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Protect Your Personal Photos With Password</title>
		<link>http://www.compedia4us.com/2010/05/protect-your-personal-photos-with-password</link>
		<comments>http://www.compedia4us.com/2010/05/protect-your-personal-photos-with-password#comments</comments>
		<pubDate>Sat, 29 May 2010 20:20:09 +0000</pubDate>
		<dc:creator>shayan-cool</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows Solutions]]></category>
		<category><![CDATA[Add Password To Open Images]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[lockimage]]></category>
		<category><![CDATA[photos]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tricks]]></category>
		<category><![CDATA[Windows solution]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/05/protect-your-personal-photos-with-password</guid>
		<description><![CDATA[We save many of our pictures in our computer which includes some personal pictures and normal pictures. The word “personal pictures”&#160; means not to be viewed by every one except the user itself, so there are some pictures which we don&#8217;t want that every should see and we name them as personal pictures. There are [...]]]></description>
			<content:encoded><![CDATA[<p>We save many of our pictures in our computer which includes some personal pictures and normal pictures. The word “personal pictures”&#160; means not to be viewed by every one except the user itself, so there are some pictures which we don&#8217;t want that every should see and we name them as personal pictures. There are several methods by which you can protect your personal photos. The method of protecting your personal photos is now made easy with a free program called Lock Image.</p>
<p><span id="more-5183"></span></p>
<p><img title="LockImage_thumb" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="321" alt="LockImage_thumb" src="http://www.compedia4us.com/wp-content/uploads/2010/05/LockImage_thumb.png" width="418" border="0" /> </p>
<p>LockImgae is a portable software which allows you to add a password to your personal pictures so that other person cannot view that photo. The working is simple, just run the program and open that particular image on it. Now save that executable image by selecting Save As under File Menu. After giving the name and selecting the file type, it will ask you to assign a password to the file. Just type the password and save it.</p>
<p><img title="addpassword_thumb" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="330" alt="addpassword_thumb" src="http://www.compedia4us.com/wp-content/uploads/2010/05/addpassword_thumb.png" width="430" border="0" /></p>
<p>In order to view that protected file, just double-click on that file and it will ask you to enter the password. Simply enter the password and view your image. Once a photo is protected with this software, it cannot be converted back to the image format ,so be sure before protecting any image with this software.</p>
<p><img title="lockimageviewpassword_thumb" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="327" alt="lockimageviewpassword_thumb" src="http://www.compedia4us.com/wp-content/uploads/2010/05/lockimageviewpassword_thumb.png" width="324" border="0" /> </p>
<p>This program needs no installation as it can be executed directly after downloading.</p>
<p><a href="http://code.google.com/p/lockimage/">Download LockImage</a></p>
<p>Via-<a href="http://www.technixupdate.com/add-password-to-open-images-photos/?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed:+TechnixUpdate+(Technix+Update+-+Computer+Tips,+Tricks,+Tech+News+%26+Useful+Softwares)">Technixupdate</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/04/chip-drive-for-computer-lock-and-password" rel="bookmark" class="crp_title">Chip Drive for Computer Lock and Password</a></li><li><a href="http://www.compedia4us.com/2009/10/how-to-recover-memory-card-password" rel="bookmark" class="crp_title">How to Recover Memory card password</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-recover-excel-password" rel="bookmark" class="crp_title">How to recover excel password</a></li><li><a href="http://www.compedia4us.com/2010/04/convert-the-web-page-into-pdf-file-format" rel="bookmark" class="crp_title">Convert The Web Page Into PDF File Format</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile" rel="bookmark" class="crp_title">How To Apply A Customize Background Image On Your Twitter Profile</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/05/protect-your-personal-photos-with-password/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ReOpen Accidently Closed File In A Single-Click</title>
		<link>http://www.compedia4us.com/2010/05/reopen-accidently-closed-file-in-a-single-click</link>
		<comments>http://www.compedia4us.com/2010/05/reopen-accidently-closed-file-in-a-single-click#comments</comments>
		<pubDate>Thu, 27 May 2010 20:30:42 +0000</pubDate>
		<dc:creator>shayan-cool</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows Solutions]]></category>
		<category><![CDATA[Applications]]></category>
		<category><![CDATA[reopen]]></category>
		<category><![CDATA[Reopen closed files in a click]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[Windows solution]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/05/reopen-accidently-closed-file-in-a-single-click</guid>
		<description><![CDATA[There are certain times when we accidently closes a document or a file which we don&#8217;t want to, and to reopen that file again we have to go to that file location and double click on it, which is time consuming. A new tool named ReOpen has made our work easier, which allows us to [...]]]></description>
			<content:encoded><![CDATA[<p>There are certain times when we accidently closes a document or a file which we don&#8217;t want to, and to reopen that file again we have to go to that file location and double click on it, which is time consuming. A new tool named ReOpen has made our work easier, which allows us to open the accidently closed file in just a single-click. This tool saves all those files in its small space so its not limited only to last file closed but it shows all those file which were closed within some duration. Our job is to remember the name of the file which we want to open it again.</p>
<p><span id="more-5155"></span></p>
<p><img title="reopen" style="border-top-width: 0px; display: block; border-left-width: 0px; float: none; border-bottom-width: 0px; margin-left: auto; margin-right: auto; border-right-width: 0px" height="275" alt="reopen" src="http://www.compedia4us.com/wp-content/uploads/2010/05/reopen.jpg" width="432" border="0" /> </p>
<p>The process is simple, just download the program and run, you will be able to see all those files that were closed accidently. Just select the particular file which has to reopen and press the Hotkey Shift + Pause, Your file will be reopened. This Hotkey combination can be changed to whatever combination you wish to select, as the tool is configurable and can be modified to provide any hotkey combination and color. This tool is portable and can be downloaded from below.</p>
<p><a href="http://www.favessoft.com/ReOpen.zip">Download ReOpen</a></p>
<p>Via-<a href="http://techsalsa.com/reopen-closed-files-in-a-click/?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed:+TechSalsa+(Tech+Salsa)">Techsalsa</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2009/08/now-recover-your-unsaved-documents-of-ms-word-how-to" rel="bookmark" class="crp_title">Now Recover your Unsaved Documents of MS word &#8211; [How To]</a></li><li><a href="http://www.compedia4us.com/2009/06/how-to-open-old-format-files-easily" rel="bookmark" class="crp_title">How to open old format files easily</a></li><li><a href="http://www.compedia4us.com/2009/03/shutdown-your-computer-automatically-with-mortens" rel="bookmark" class="crp_title">Shutdown your Computer Automatically with Mortens</a></li><li><a href="http://www.compedia4us.com/2009/08/how-to-convert-torrent-files-into-exe" rel="bookmark" class="crp_title">How to Convert .torrent files into .exe</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-solve-file-extension-contact-2" rel="bookmark" class="crp_title">How To Solve File Extension CONTACT</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/05/reopen-accidently-closed-file-in-a-single-click/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove the Countdown Timer While Downloading On RapidShare</title>
		<link>http://www.compedia4us.com/2010/05/remove-the-countdown-timer-while-downloading-on-rapidshare</link>
		<comments>http://www.compedia4us.com/2010/05/remove-the-countdown-timer-while-downloading-on-rapidshare#comments</comments>
		<pubDate>Tue, 25 May 2010 20:22:06 +0000</pubDate>
		<dc:creator>shayan-cool</dc:creator>
				<category><![CDATA[Google Section]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Downloads]]></category>
		<category><![CDATA[firefox]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[rapidshare]]></category>
		<category><![CDATA[Remove the countdown timer while downloading in RapidShare]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/05/remove-the-countdown-timer-while-downloading-on-rapidshare</guid>
		<description><![CDATA[RapidShare is a well reputed File Hosting service which provides a great platform for downloading and sharing the useful files among the friends all over the world. As the service is so much reliable and helpful so it has some strict rules to follow. For example, if you want to download a certain file so [...]]]></description>
			<content:encoded><![CDATA[<p>RapidShare is a well reputed File Hosting service which provides a great platform for downloading and sharing the useful files among the friends all over the world. As the service is so much reliable and helpful so it has some strict rules to follow. For example, if you want to download a certain file so you have to make a premium paid RapidShare account first and carry on the further process.</p>
<p><span id="more-5115"></span></p>
<p><img title="rapidsharecountdownremoved_thumb" style="border-right: 0px; border-top: 0px; display: block; float: none; margin-left: auto; border-left: 0px; margin-right: auto; border-bottom: 0px" height="360" alt="rapidsharecountdownremoved_thumb" src="http://www.compedia4us.com/wp-content/uploads/2010/05/rapidsharecountdownremoved_thumb.png" width="480" border="0" /></p>
<p>Another problem which the RapidShare users face is the countdown timer which irritates them while downloading files. This problem can now be removed with a add-on called RapidShare Download Helper for Google Chrome and <a href="http://www.compedia4us.com/tag/firefox">Firefox</a>. This add-on removes the countdown timer while downloading the file and automatically monitors the time limitations. Once the link is available and timer is completed, downloading starts. This add-on performs two basic operations while downloading certain file from RapidShare, First it auto-detects the countdowns and second it auto-starts the download when the countdown is over. The add-on is easy to install and helpful for the RapidShare users.</p>
<p>RapidShare Download Helper for <a href="https://chrome.google.com/extensions/detail/afpbkpjjkfakdcakapanjoeijlphieei#">Google Chrome</a> and <a href="https://addons.mozilla.org/en-US/firefox/addon/66584/">Firefox</a></p>
<p>Via-<a href="http://www.troublefixers.com/remove-rapidshare-wait-timer/?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed:+troublefixers+(TroubleFixers+-+Computer+Troubleshooting+Tips,+Tools+%26+Guides)">Troublefixers</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/05/change-the-firefox-themes-from-personas-rotator-automatically" rel="bookmark" class="crp_title">Change The Firefox Themes From Personas Rotator Automatically</a></li><li><a href="http://www.compedia4us.com/2009/06/change-firefox-3-position-bar-into-firefox-2-location-bar" rel="bookmark" class="crp_title">Change Firefox 3 Position Bar Into Firefox 2 Location Bar</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-solve-%e2%80%9cregistry-editor-disabled-by-system-administrator%e2%80%9d-problem" rel="bookmark" class="crp_title">How to solve “Registry editor disabled by system administrator” problem</a></li><li><a href="http://www.compedia4us.com/2010/01/mozilla-add-on-weave-sync-1-0" rel="bookmark" class="crp_title">Mozilla Add-on Weave Sync 1.0</a></li><li><a href="http://www.compedia4us.com/2009/10/finaldata-enterprise-a-best-way-for-data-recovery" rel="bookmark" class="crp_title">FinalData Enterprise&rlm; &ndash; A best way for Data Recovery</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/05/remove-the-countdown-timer-while-downloading-on-rapidshare/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Make Your Android 2.2 A Portable Wi-Fi Hotspot</title>
		<link>http://www.compedia4us.com/2010/05/make-your-android-2-2-a-portable-wi-fi-hotspot</link>
		<comments>http://www.compedia4us.com/2010/05/make-your-android-2-2-a-portable-wi-fi-hotspot#comments</comments>
		<pubDate>Mon, 24 May 2010 20:35:41 +0000</pubDate>
		<dc:creator>shayan-cool</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[android 2.2]]></category>
		<category><![CDATA[Guides]]></category>
		<category><![CDATA[ip]]></category>
		<category><![CDATA[Make your Android 2.2 a portable Wi-Fi hotspot]]></category>
		<category><![CDATA[networks]]></category>
		<category><![CDATA[Wi-Fi]]></category>
		<category><![CDATA[Wireless]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/05/make-your-android-2-2-a-portable-wi-fi-hotspot</guid>
		<description><![CDATA[Wireless Internet users sometimes might have faced the difficulty in their connections  due to weather or other reason. If you have Android 2.2 with you, so your problem is solved. You can make your Android 2.2 a portable Wi-Fi hotspot by enabling the option installed in it. This unique feature in the Android 2.2 allows [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.compedia4us.com/tag/wireless">Wireless</a> Internet users sometimes might have faced the difficulty in their connections  due to weather or other reason. If you have Android 2.2 with you, so your problem is solved. You can make your Android 2.2 a portable Wi-Fi hotspot by enabling the option installed in it. This unique feature in the Android 2.2 allows you to connect your <a href="http://www.compedia4us.com/tag/ipad">iPad</a>,iPod Touch,Zune HD or any other device , with the Wi-Fi connection activated in Android 2.2. The procedure of enabling the Wi-fi hotspot option is described below;</p>
<p><span id="more-5092"></span></p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="n1_hotspot2" src="http://www.compedia4us.com/wp-content/uploads/2010/05/n1_hotspot2.png" border="0" alt="n1_hotspot2" width="210" height="347" /></p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="n1_hotspot3" src="http://www.compedia4us.com/wp-content/uploads/2010/05/n1_hotspot3.png" border="0" alt="n1_hotspot3" width="216" height="357" /></p>
<p>Simply Go to the settings and select the Wireless &amp; networks option. Now select the Tethering and Hotspot option and in the next option put a check on the Portable Wi-Fi option. To manage the settings of the hotspot select Portable Wi-Fi Hotspot Settings &lt; Configure Wi-Fi Hotspot. Now input the Network SSID for your connection and then there will be two options provided to you , Open and WPA2 PSK. First option is simple but if you want to select the WPA2 PSK option then it will ask you to enter the password for the connection, once you entered the password, click the Save button.Your Hotspot will be created.</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="n1_hotspot5" src="http://www.compedia4us.com/wp-content/uploads/2010/05/n1_hotspot5.png" border="0" alt="n1_hotspot5" width="234" height="387" /></p>
<p>You can enable or disable the connection from the checkbox option. Once the connection is enabled you can connect any of your device with the portable hotspot by configuring its wireless connection settings to the Network SSID of your Android device. This feature in the Android 2.2 is awesome which provides a great ability to connect other devices with its portable Wi-Fi hotspot.</p>
<p><img style="display: block; float: none; margin-left: auto; margin-right: auto; border-width: 0px;" title="n1_hotspot8" src="http://www.compedia4us.com/wp-content/uploads/2010/05/n1_hotspot8.jpg" border="0" alt="n1_hotspot8" width="276" height="412" /></p>
<p>Via-<a href="http://www.tech-recipes.com/rx/5894/android-2-2-make-your-device-a-portable-wi-fi-hotspot/?utm_source=feedburner&amp;utm_medium=email&amp;utm_campaign=Feed:+Tech-RecipesMain+(Tech-Recipes+Main)">Tech-recipes</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2009/11/turn-your-windows-7-into-wi-fi-hotspot-with-virtual-router" rel="bookmark" class="crp_title">Turn your Windows 7 into Wi-Fi Hotspot with Virtual Router</a></li><li><a href="http://www.compedia4us.com/2010/05/make-video-calls-with-fring-application-from-your-android-phone" rel="bookmark" class="crp_title">Make Video Calls with Fring Application From Your Android Phone</a></li><li><a href="http://www.compedia4us.com/2010/06/disable-the-taskbar-thumbnails-for-individuals-in-internet-explorer-8-for-windows-7" rel="bookmark" class="crp_title">Disable The Taskbar Thumbnails For Individuals In Internet Explorer 8 for Windows 7</a></li><li><a href="http://www.compedia4us.com/2010/01/how-to-secure-your-wireless-connection-and-what-are-wireless-antenas" rel="bookmark" class="crp_title">How to Secure your Wireless Connection and what are Wireless Antennas</a></li><li><a href="http://www.compedia4us.com/2009/10/vodafone-live-manual-settings-for-sony-ericsson-phones" rel="bookmark" class="crp_title">Vodafone live! manual settings for Sony Ericsson phones</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/05/make-your-android-2-2-a-portable-wi-fi-hotspot/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Remove The Splash Screen Using Splash Killer</title>
		<link>http://www.compedia4us.com/2010/04/remove-the-splash-screen-using-splash-killer</link>
		<comments>http://www.compedia4us.com/2010/04/remove-the-splash-screen-using-splash-killer#comments</comments>
		<pubDate>Mon, 05 Apr 2010 14:27:33 +0000</pubDate>
		<dc:creator>shayan-cool</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[Free to use]]></category>
		<category><![CDATA[time saving.]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/04/remove-the-splash-screen-using-splash-killer</guid>
		<description><![CDATA[When you start some programs like Photoshop , Dreamweaver , Flash etc, so splash screens occur at the beginning which takes at least 40-50 sec for its execution and then the software is opened. These splash screens are totally time wasting, so to coup-up with this problem a program has been made named “Splash Killer” [...]]]></description>
			<content:encoded><![CDATA[<p>When you start some programs like Photoshop , Dreamweaver , Flash etc, so splash screens occur at the beginning which takes at least 40-50 sec for its execution and then the software is opened. These splash screens are totally time wasting, so to coup-up with this problem a program has been made named “Splash Killer” which stops the display of the splash screens of the third party programs.<span id="more-5047"></span></p>
<p style="text-align: center;"><img class="aligncenter" style="float: none; margin-left: auto; margin-right: auto; border: 0px;" src="http://www.compedia4us.com/wp-content/uploads/2010/04/splashscreenadobe_thumb.jpg" border="0" alt="splashscreenadobe" width="378" height="228" /></p>
<p>Above is a screenshot of the Slash screen which runs before the Photoshop software.These type of screens can be removed using this free software. It silently runs in the system tray. The working is simple, Run this program by double clicking the system tray icon and then select configuration.</p>
<p style="text-align: center;"><a href="http://www.compedia4us.com/wp-content/uploads/2010/04/config.png"><img class="aligncenter" style="float: none; margin-left: auto; margin-right: auto; border: 0px;" src="http://www.compedia4us.com/wp-content/uploads/2010/04/config_thumb.png" border="0" alt="config" width="162" height="201" /></a></p>
<p>Now configuration box will be opened then add the programs which shows splash screens and then click ok. The results will be positive for many of the programs. It can kill many of the splash screen of the programs but with few programs it won’t work.</p>
<p style="text-align: center;"><a href="http://www.compedia4us.com/wp-content/uploads/2010/04/removesplashbanner.png"><img class="aligncenter" style="float: none; margin-left: auto; margin-right: auto; border: 0px;" src="http://www.compedia4us.com/wp-content/uploads/2010/04/removesplashbanner_thumb.png" border="0" alt="removesplashbanner" width="354" height="213" /></a></p>
<p>This programs is compatible with all the operating system versions, With windows 7 you might need to run this software on windows XP mode, but this situation comes in very rare cases.</p>
<p><a href="http://www.digitallis.co.uk/pc/downloads/SplashKiller.zip">Download Splash Killer</a></p>
<p>Via-<a href="http://www.technixupdate.com/stop-display-of-start-splash-screens-promotional-banner/">Technixupdate</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/04/now-tile-up-and-arrange-your-opened-windows-on-desktop-with-tiler" rel="bookmark" class="crp_title">Now Tile Up and Arrange your Opened Windows on Desktop with Tiler.</a></li><li><a href="http://www.compedia4us.com/2009/10/splashplay-google-phone-android-application" rel="bookmark" class="crp_title">SplashPlay &#8211; Google Phone Android Application</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-close-non-responsive-programs-automatically-by-using-registry-setting" rel="bookmark" class="crp_title">How to Close non-responsive programs automatically by using Registry Setting</a></li><li><a href="http://www.compedia4us.com/2010/03/how-to-hide-the-icons-from-the-bottom-of-your-screen" rel="bookmark" class="crp_title">How to hide the icons from the bottom of your screen</a></li><li><a href="http://www.compedia4us.com/2008/08/touch-screen-newest-technology" rel="bookmark" class="crp_title">Touch Screen Newest Technology</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/04/remove-the-splash-screen-using-splash-killer/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now Erase Data from Your Hard Disk Securely with Roadkil&#8217;s Disk Wipe</title>
		<link>http://www.compedia4us.com/2010/04/now-erase-data-from-your-hard-disk-securely-with-roadkils-disk-wipe</link>
		<comments>http://www.compedia4us.com/2010/04/now-erase-data-from-your-hard-disk-securely-with-roadkils-disk-wipe#comments</comments>
		<pubDate>Mon, 05 Apr 2010 14:07:33 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows Solutions]]></category>
		<category><![CDATA[removing tool]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[Tricks]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/04/now-erase-data-from-your-hard-disk-securely-with-roadkils-disk-wipe</guid>
		<description><![CDATA[We have deleted lots of Data from Hard Disk in our daily life usage of Computer Systems, but the big problem is that the data which we deleted ever is not permanently deleted from our hard drives that means it can be recovered by using different tools. There are many situations occur in front of [...]]]></description>
			<content:encoded><![CDATA[<p align="justify">We have deleted lots of Data from Hard Disk in our daily life usage of <strong>Computer</strong> Systems, but the big problem is that the data which we deleted ever is not permanently deleted from our hard drives that means it can be recovered by using different tools. There are many situations occur in front of us where we permanently want to delete our secrete or confidential data so that it cannot be recovered back again. </p>
<p><span id="more-5036"></span></p>
<p align="justify"><a href="http://www.compedia4us.com/wp-content/uploads/2010/04/diskwipe.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="disk-wipe" border="0" alt="disk-wipe" src="http://www.compedia4us.com/wp-content/uploads/2010/04/diskwipe_thumb.jpg" width="389" height="180" /></a> </p>
<p align="justify">In order to solve this problem we are here with a third party application tool named as <strong>Roadkil’s Disk Wipe</strong> and it will remove the data from hard drives permanently and it can also fill up the disk space with random data or it may leave the disk space blank as well. This application is very easy to use and you can perform several passes to ensuring that the data is totally unrecoverable. You can fully utilize this application for deleting the data from your Hard Disks and <a href="http://www.compedia4us.com/tag/usb"><strong>USB</strong></a><strong>/</strong><strong>Flash Drives</strong> as well.</p>
<p align="justify"><strong><a href="http://www.roadkil.net/program.php?ProgramID=14">Download Roakkil’s Disk Wipe From Here</a></strong></p>
<p align="justify">via <a href="http://techsalsa.com/securely-erase-disk-data-with-roadkils-disk-wipe/">techsalsa</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/06/how-to-recover-deleted-and-lost-partitions-with-minitool-partition-recovery" rel="bookmark" class="crp_title">How to Recover Deleted and Lost Partitions with MiniTool Partition Recovery</a></li><li><a href="http://www.compedia4us.com/2009/12/now-duplicate-your-sony-ps3-hd-drives-without-pc-with-marshal" rel="bookmark" class="crp_title">Now Duplicate your Sony PS3 HD Drives without PC with Marshal</a></li><li><a href="http://www.compedia4us.com/2009/09/now-ease-your-data-recovery-from-any-hard-drive-from-any-operating-system" rel="bookmark" class="crp_title">Now Ease your Data Recovery from any Hard drive from any Operating System</a></li><li><a href="http://www.compedia4us.com/2009/11/how-to-create-a-password-reset-disk-in-windows-xp" rel="bookmark" class="crp_title">How to Create a Password Reset Disk in Windows XP</a></li><li><a href="http://www.compedia4us.com/2009/11/how-to-use-a-password-reset-disk-in-windows-xp" rel="bookmark" class="crp_title">How to Use a Password Reset Disk in Windows XP</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/04/now-erase-data-from-your-hard-disk-securely-with-roadkils-disk-wipe/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Convert The Web Page Into PDF File Format</title>
		<link>http://www.compedia4us.com/2010/04/convert-the-web-page-into-pdf-file-format</link>
		<comments>http://www.compedia4us.com/2010/04/convert-the-web-page-into-pdf-file-format#comments</comments>
		<pubDate>Mon, 05 Apr 2010 12:20:35 +0000</pubDate>
		<dc:creator>shayan-cool</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Convenient]]></category>
		<category><![CDATA[easy]]></category>
		<category><![CDATA[PDF fiel format]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/04/convert-the-web-page-into-pdf-file-format</guid>
		<description><![CDATA[The Web pages can now be converted into PDF file format using PDFmyurl.com launched on Tuesday, March 23,2012. The name of the website clearly defines the working that it can convert any of  web page into PDF file and can be saved and used for print. This website will also help us in a way [...]]]></description>
			<content:encoded><![CDATA[<p>The Web pages can now be converted into PDF file format using PDFmyurl.com launched on Tuesday, March 23,2012. The name of the website clearly defines the working that it can convert any of  web page into PDF file and can be saved and used for print. This website will also help us in a way that long term and offline reading can be done  without internet. This is a convenient way of making your work portable and easy. It also converts e-books into PDF format which makes it easy for the readers.<span id="more-5020"></span></p>
<p style="text-align: center;"><img class="aligncenter" style="float: none; margin-left: auto; margin-right: auto; border: 0px;" src="http://www.compedia4us.com/wp-content/uploads/2010/04/pdfmyurl1_thumb.png" border="0" alt="pdfmyurl1" width="316" height="205" /></p>
<p>The conversion is simple, all you need to do is enter the URL address of the page which you want to convert into PSD format and just enter. Then you can just save or print that file and can use it as offline reading. The results of the page are good and with clear wordings and image result is also fine. The main purpose of PDFmyurl is basically provide the readers the facility of offline reading and long term archiving which is fantastic and superb.</p>
<p>Via-<a href="http://www.technixupdate.com/print-save-a-web-page-as-pdf/">Technixupdate</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/05/protect-your-personal-photos-with-password" rel="bookmark" class="crp_title">Protect Your Personal Photos With Password</a></li><li><a href="http://www.compedia4us.com/2009/06/how-to-open-old-format-files-easily" rel="bookmark" class="crp_title">How to open old format files easily</a></li><li><a href="http://www.compedia4us.com/2009/09/play-with-mozilla-firefox-shortcut-keys" rel="bookmark" class="crp_title">Play with Mozilla Firefox Shortcut Keys</a></li><li><a href="http://www.compedia4us.com/2010/07/apply-linked-style-to-your-web-pages-using-css" rel="bookmark" class="crp_title">Apply Linked Style to Your Web Pages Using CSS</a></li><li><a href="http://www.compedia4us.com/2010/06/how-to-apply-a-customize-background-image-on-your-twitter-profile" rel="bookmark" class="crp_title">How To Apply A Customize Background Image On Your Twitter Profile</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/04/convert-the-web-page-into-pdf-file-format/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Protect Your USB Drives Against Autorun Viruses For Life Time</title>
		<link>http://www.compedia4us.com/2010/04/protect-your-usb-drives-against-autorun-viruses-for-life-time</link>
		<comments>http://www.compedia4us.com/2010/04/protect-your-usb-drives-against-autorun-viruses-for-life-time#comments</comments>
		<pubDate>Fri, 02 Apr 2010 18:37:59 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Networking]]></category>
		<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Freewares]]></category>
		<category><![CDATA[Security]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[USB]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/04/protect-your-usb-drives-against-autorun-viruses-for-life-time</guid>
		<description><![CDATA[The most common virus we have found in our USB devices are Autorun Viruses . Few days ago we had given you a solution of how to protect your USB devices from Autorun viruses. But we all know that all these solutions are working fine but for just few days and we never meet with [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify">The most common virus we have found in our <a href="http://www.compedia4us.com/tag/usb"><strong>USB</strong></a> devices are Autorun Viruses . Few days ago we had given you a solution of <strong>how to protect your USB devices from Autorun viruses</strong>. But we all know that all these solutions are working fine but for just few days and we never meet with a permanent solution to remove viruses but this time we are here with a proper and permanent solution.
</p>
<p><span id="more-4898"></span></p>
<p style="text-align: justify"><a href="http://www.compedia4us.com/wp-content/uploads/2010/04/usbpendrive.jpg"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="usbpendrive" border="0" alt="usbpendrive" src="http://www.compedia4us.com/wp-content/uploads/2010/04/usbpendrive_thumb.jpg" width="316" height="198" /></a>
</p>
<p style="text-align: justify">We just came across today with a very useful application tool, it is a tool which may protect your USB drives or different Removable USB devices for a lifetime. The Application is titled as “ USB Defender ”. This tool will surely help you to protect with different numbers of Autorun viruses which may infect your USB drives and your PC too whenever you plugged an infected USB Drives to your <strong>Computer</strong> Systems.&nbsp;
</p>
<p style="text-align: justify">Lets talk a few about USB defender so it is easy to use device. Its interface shows only two buttons that is “ Protect “ and “ Unprotect “. Protect button is use to apply a protection on your device and in contrast Unprotect button is use to remove the protection applied on you drive.
</p>
<p style="text-align: justify">Using this tool is very easy and what you need to do just select any drive , then a program will automatically detects either a drive is protected or not and in that case only one option will be available for you as you can see in the image .
</p>
<p style="text-align: justify"><a href="http://www.compedia4us.com/wp-content/uploads/2010/04/addprotectiontousbdirves.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="addprotectiontousbdirves" border="0" alt="addprotectiontousbdirves" src="http://www.compedia4us.com/wp-content/uploads/2010/04/addprotectiontousbdirves_thumb.png" width="407" height="193" /></a>
</p>
<p style="text-align: justify">Lets have a look that how this application will protect your drives against Autorun viruses. It initially make a folder which is a system hidden folder called as AUTORUN.INF as seen in below image .
</p>
<p style="text-align: justify"><a href="http://www.compedia4us.com/wp-content/uploads/2010/04/usbdrivevaccinated3.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="usbdrivevaccinated3" border="0" alt="usbdrivevaccinated3" src="http://www.compedia4us.com/wp-content/uploads/2010/04/usbdrivevaccinated3_thumb.png" width="423" height="190" /></a>
</p>
<p style="text-align: justify">After the creation of AUTORUN.INF folder your drive will not be infected by Autorun virus that means whenever you connect your USB drive to any infected computer then it will not infect your USB or Pen Drive.</p>
<blockquote>
<p style="text-align: justify"><strong>Important Note:- Keep this thing in your mind that once you have format your Pen or USB drive, then the applied protection will be lost so you should require to protect the drive again by using this application</strong>
</p>
</blockquote>
<p><strong><a href="http://www.softpedia.com/progDownload/USB-Defender-Download-155986.html">Download USB Defender From Here</a></strong></p>
<p>via <a href="http://www.troublefixers.com/add-life-time-protection-to-usb-drives-against-autorun-viruses/">troublefixers</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2009/02/how-to-protect-your-mobile-phone-from-viruses" rel="bookmark" class="crp_title">How to Protect your Mobile phone from viruses</a></li><li><a href="http://www.compedia4us.com/2009/05/set-custom-drive-icons-to-drives-in-vista-xp-with-my-drive-icons" rel="bookmark" class="crp_title">Set Custom Drive Icons To Drives In Vista &amp; XP with My Drive Icons</a></li><li><a href="http://www.compedia4us.com/2010/07/6-best-free-anti-spyware-programs" rel="bookmark" class="crp_title">6 Best Free Anti Spyware Programs</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-remove-the-viruses-like-khatra-exe-ghost-exe-and-xplorer-exe-from-your-pc" rel="bookmark" class="crp_title">How to remove the viruses like khatra.exe, ghost.exe and Xplorer.exe from your PC</a></li><li><a href="http://www.compedia4us.com/2010/03/toshiba-portable-hard-drives-up-to-1tb-canvio" rel="bookmark" class="crp_title">Toshiba portable hard drives up to 1TB (Canvio)</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/04/protect-your-usb-drives-against-autorun-viruses-for-life-time/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Now Tile Up and Arrange your Opened Windows on Desktop with Tiler.</title>
		<link>http://www.compedia4us.com/2010/04/now-tile-up-and-arrange-your-opened-windows-on-desktop-with-tiler</link>
		<comments>http://www.compedia4us.com/2010/04/now-tile-up-and-arrange-your-opened-windows-on-desktop-with-tiler#comments</comments>
		<pubDate>Thu, 01 Apr 2010 14:26:17 +0000</pubDate>
		<dc:creator>Danish</dc:creator>
				<category><![CDATA[Tips and Tricks]]></category>
		<category><![CDATA[Windows Solutions]]></category>
		<category><![CDATA[How to]]></category>
		<category><![CDATA[Windows solution]]></category>

		<guid isPermaLink="false">http://www.compedia4us.com/2010/04/now-tile-up-and-arrange-your-opened-windows-on-desktop-with-tiler</guid>
		<description><![CDATA[If we are working on our Pc’s and there are lots of windows are opened up on Desktop then it is obviously a hectic task for us to handle them and in result we just close all these windows. But what if a better solution will suggest?, Here we are with a great small application [...]]]></description>
			<content:encoded><![CDATA[<p>If we are working on our Pc’s and there are lots of <a href="http://www.compedia4us.com/category/windows-solutions"><strong>windows</strong></a> are opened up on Desktop then it is obviously a hectic task for us to handle them and in result we just close all these windows. But what if a better solution will suggest?, Here we are with a great small application titled as “ Tiler ”, it will help you&#160; to arrange or tile up any&#160; number of opened windows on your desktop screen very quickly and in easiest way by making a single click on system tray icon of the application.</p>
<p><span id="more-4755"></span></p>
<p><a href="http://www.compedia4us.com/wp-content/uploads/2010/04/arrangedwindows.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="arrangedwindows" border="0" alt="arrangedwindows" src="http://www.compedia4us.com/wp-content/uploads/2010/04/arrangedwindows_thumb.png" width="344" height="241" /></a></p>
<p><a href="http://www.compedia4us.com/wp-content/uploads/2010/04/tiler.png"><img style="border-bottom: 0px; border-left: 0px; display: block; float: none; margin-left: auto; border-top: 0px; margin-right: auto; border-right: 0px" title="tiler" border="0" alt="tiler" src="http://www.compedia4us.com/wp-content/uploads/2010/04/tiler_thumb.png" width="345" height="228" /></a></p>
<p>This is not enough here but you are also able to select the layout of arrangement ( for example : Tile Horizontally or Tile Vertically). In addition with the help of this application you may also select the option ( Close all Programs ) or (Keep all Programs Maximized) . In conclusion this application is a portable type application and you will get full advantage of this coolest application.</p>
<p><strong><a href="http://www.sdsoftware.org/default.asp?id=11221">Download Tiler Application From Here</a></strong></p>
<p>via <a href="http://www.technixupdate.com/arrange-or-tile-up-all-windows-opened-on-desktop-with-tiler/">technixupdates</a></p>
<div id="crp_related"><h3>Related Posts:</h3><ul><li><a href="http://www.compedia4us.com/2010/04/remove-the-splash-screen-using-splash-killer" rel="bookmark" class="crp_title">Remove The Splash Screen Using Splash Killer</a></li><li><a href="http://www.compedia4us.com/2009/09/how-to-close-non-responsive-programs-automatically-by-using-registry-setting" rel="bookmark" class="crp_title">How to Close non-responsive programs automatically by using Registry Setting</a></li><li><a href="http://www.compedia4us.com/2010/04/turn-your-ipad-into-a-secondary-display-monitor-via-idisplay" rel="bookmark" class="crp_title">Turn Your IPad into a Secondary Display Monitor Via iDisplay</a></li><li><a href="http://www.compedia4us.com/2010/03/now-reebot-and-switch-your-pc-on-different-operating-system-using-ireboot" rel="bookmark" class="crp_title">Now Reebot and switch your PC on different Operating System using iReboot</a></li><li><a href="http://www.compedia4us.com/2009/11/how-to-change-library-icons-in-windows-7-by-using-replace-library-icons-software" rel="bookmark" class="crp_title">How to change Library Icons in Windows 7 by using Replace Library Icons Software</a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://www.compedia4us.com/2010/04/now-tile-up-and-arrange-your-opened-windows-on-desktop-with-tiler/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
