<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.itfall.com/~d/styles/itemcontent.css"?><rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:sy="http://purl.org/rss/1.0/modules/syndication/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ITfall</title>
	
	<link>http://www.itfall.com</link>
	<description>Where Infinite IT is Defined</description>
	<lastBuildDate>Tue, 22 Mar 2011 12:01:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.itfall.com/itfall" /><feedburner:info uri="itfall" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>itfall</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>Copy File from Website to Website with a PHP Script</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/gQxbOPJxm0M/</link>
		<comments>http://www.itfall.com/copy-file-website-to-website-php-script/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 11:54:01 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[copy]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=369</guid>
		<description><![CDATA[Sometimes you might need to copy a big file to your website. Usually, you would simply upload it with an FTP client, but when you have the file already on another website, it would be much faster to just copy the file directly from your another website straight to your website with a direct connection. As well, you might need to extract the file after it has been copied. I&#8217;ll consider an example where you have to copy the WordPress web software zip file to your website. The script here is written with PHP and runs on a Linux platform.&#8230; <a href="http://www.itfall.com/copy-file-website-to-website-php-script/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/extract-zip-archive-file-cpanel/' rel='bookmark' title='Permanent Link: Extract Zip archive file with cPanel'>Extract Zip archive file with cPanel</a></li>
<li><a href='http://www.itfall.com/search/' rel='bookmark' title='Permanent Link: Search ITfall.com'>Search ITfall.com</a></li>
<li><a href='http://www.itfall.com/subscribe-to-rss-feeds-with-rss-bandit/' rel='bookmark' title='Permanent Link: Subscribe to RSS Feeds with RSS Bandit'>Subscribe to RSS Feeds with RSS Bandit</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p>Sometimes you might need to copy a big file to your website. Usually, you would simply upload it with an FTP client, but when you have the file already on another website, it would be much faster to just copy the file directly from your another website straight to your website with a direct connection. As well, you might need to extract the file after it has been copied. I&#8217;ll consider an example where you have to copy the WordPress web software zip file to your website. The script here is written with PHP and runs on a Linux platform. Before you run the script, the destination folder on your website must have the suitable CHMOD, 755 would be enough.</p>
<p><strong>Do the following steps to create the script file and copy the ZIP file to your website:</strong></p>
<ol>
<li>Create a file and name it copy.php</li>
<li>Open the file in a text editor and copy the following script:
<pre class="brush: php; title: ;">
&lt;?php
if(!copy(&quot;http://wordpress.org/latest.zip&quot;, &quot;wordpress.zip&quot;))
{
echo(&quot;Failed to copy the file.&quot;);
}
;
?&gt;
</pre>
</li>
<li>As you can see in the script, there is a source URL (http://wordpress.org/latest.zip) of the file and a destination path and file name (wordpress.zip , in same directory). Change these according to your input.</li>
<li>Then save the file.</li>
<li>Upload copy.php using your FTP client to the destination folder.</li>
<li>Now, using your web browser, access the copy.php file so that the script runs and copies the file. For example, if you uploaded the file to the root directory, use www.yourdomain.com/copy.php</li>
<li>If the script runs successfully, the wordpress.zip file should be there in the destination directory.</li>
</ol>
<p>Also typically, you might need to extract this file. I&#8217;ll show you how to do that if you had a web hosting account that uses cPanel. <a rel="nofollow" href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=rainhost">HostGator</a> has such platform for example. <a title="Extract Zip archive file with cPanel" href="http://www.itfall.com/extract-zip-archive-file-cpanel/">Click here to see how to extract a zip archive file with cPanel</a></p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fcopy-file-website-to-website-php-script%2F&amp;title=Copy%20File%20from%20Website%20to%20Website%20with%20a%20PHP%20Script"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 Copy File from Website to Website with a PHP Script"  title="Copy File from Website to Website with a PHP Script" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/extract-zip-archive-file-cpanel/' rel='bookmark' title='Permanent Link: Extract Zip archive file with cPanel'>Extract Zip archive file with cPanel</a></li>
<li><a href='http://www.itfall.com/search/' rel='bookmark' title='Permanent Link: Search ITfall.com'>Search ITfall.com</a></li>
<li><a href='http://www.itfall.com/subscribe-to-rss-feeds-with-rss-bandit/' rel='bookmark' title='Permanent Link: Subscribe to RSS Feeds with RSS Bandit'>Subscribe to RSS Feeds with RSS Bandit</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=gQxbOPJxm0M:Eig38iX0z_k:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=gQxbOPJxm0M:Eig38iX0z_k:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=gQxbOPJxm0M:Eig38iX0z_k:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=gQxbOPJxm0M:Eig38iX0z_k:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=gQxbOPJxm0M:Eig38iX0z_k:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=gQxbOPJxm0M:Eig38iX0z_k:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=gQxbOPJxm0M:Eig38iX0z_k:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=gQxbOPJxm0M:Eig38iX0z_k:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/gQxbOPJxm0M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/copy-file-website-to-website-php-script/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.itfall.com/copy-file-website-to-website-php-script/</feedburner:origLink></item>
		<item>
		<title>Extract Zip archive file with cPanel</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/pl-CukvXV9o/</link>
		<comments>http://www.itfall.com/extract-zip-archive-file-cpanel/#comments</comments>
		<pubDate>Tue, 22 Mar 2011 11:18:04 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[Web Hosting]]></category>
		<category><![CDATA[archive]]></category>
		<category><![CDATA[cPanel]]></category>
		<category><![CDATA[extract]]></category>
		<category><![CDATA[zip]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=375</guid>
		<description><![CDATA[It is much faster if you wanted to have a large number of files uploaded to your website by Zipping it first and then uploading it. And after that, unzipping the archive file on the server. If your web host uses cPanel, like HostGator, do the following steps to extract the Zip file:
<ol>
<li>Access your cPanel.</li>
<li>In the &#8220;Files&#8221; section, click &#8220;File Manager&#8221;.</li>
<li>Select the directory where your Zip file is in.</li>
<li>Click the &#8220;Go&#8221; button.</li>
<li>Select the Zip archive file.</li>
<li>Click the Extract button.</li>
<li>You will be prompted to specify the destination path, specify the path or just keep the</li></ol>&#8230; <a href="http://www.itfall.com/extract-zip-archive-file-cpanel/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/copy-file-website-to-website-php-script/' rel='bookmark' title='Permanent Link: Copy File from Website to Website with a PHP Script'>Copy File from Website to Website with a PHP Script</a></li>
<li><a href='http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/' rel='bookmark' title='Permanent Link: Make Windows 7 taskbar buttons REALLY never combine'>Make Windows 7 taskbar buttons REALLY never combine</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-377" title="cPanel Logo" src="http://www.itfall.com/wp-content/uploads/2011/03/cpanel-logo.png" alt="cpanel logo Extract Zip archive file with cPanel" width="112" height="72" />It is much faster if you wanted to have a large number of files uploaded to your website by Zipping it first and then uploading it. And after that, unzipping the archive file on the server. If your web host uses cPanel, like <a rel="nofollow" href="http://secure.hostgator.com/~affiliat/cgi-bin/affiliates/clickthru.cgi?id=rainhost">HostGator</a>, do the following steps to extract the Zip file:</p>
<ol>
<li>Access your cPanel.</li>
<li>In the &#8220;Files&#8221; section, click &#8220;File Manager&#8221;.</li>
<li>Select the directory where your Zip file is in.</li>
<li>Click the &#8220;Go&#8221; button.</li>
<li>Select the Zip archive file.</li>
<li>Click the Extract button.</li>
<li>You will be prompted to specify the destination path, specify the path or just keep the field as it is if you want to extract the files to the same directory of the Zip archive file.</li>
<li>Click the &#8220;Extract File(s)&#8221; button.</li>
</ol>
<p>That&#8217;s it, you can now delete the archive (.zip) file.</p>
<p>Now, if the extracted files go into a folder such as the case if you had &#8220;wordpress.zip&#8221; file extracted to a folder called &#8220;wordpress&#8221;, do the following to take the files that are inside the &#8220;wordpress&#8221; directory out to the higher level directory:</p>
<ol>
<li>Double click the &#8220;wordpress&#8221; directory to enter it.</li>
<li>Press the &#8220;Select all&#8221; button.</li>
<li>Then click the &#8220;Move File&#8221; button.</li>
<li>You will be prompted to specify the destination path, simply delete the &#8220;wordpress&#8221; word until you reach the slash &#8220;/&#8221; character.</li>
<li>Then click the &#8220;Move File(s)&#8221; button.</li>
<li>Then click the &#8220;Up One level&#8221; button to get back to the higher level directory. You will see your moved files and also the empty &#8220;wordpress&#8221; directory. Since the empty wordpress directory is no longer needed, you can now delete it.</li>
</ol>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fextract-zip-archive-file-cpanel%2F&amp;title=Extract%20Zip%20archive%20file%20with%20cPanel"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 Extract Zip archive file with cPanel"  title="Extract Zip archive file with cPanel" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/copy-file-website-to-website-php-script/' rel='bookmark' title='Permanent Link: Copy File from Website to Website with a PHP Script'>Copy File from Website to Website with a PHP Script</a></li>
<li><a href='http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/' rel='bookmark' title='Permanent Link: Make Windows 7 taskbar buttons REALLY never combine'>Make Windows 7 taskbar buttons REALLY never combine</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=pl-CukvXV9o:QlUJOg9-qek:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=pl-CukvXV9o:QlUJOg9-qek:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=pl-CukvXV9o:QlUJOg9-qek:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=pl-CukvXV9o:QlUJOg9-qek:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=pl-CukvXV9o:QlUJOg9-qek:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=pl-CukvXV9o:QlUJOg9-qek:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=pl-CukvXV9o:QlUJOg9-qek:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=pl-CukvXV9o:QlUJOg9-qek:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/pl-CukvXV9o" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/extract-zip-archive-file-cpanel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itfall.com/extract-zip-archive-file-cpanel/</feedburner:origLink></item>
		<item>
		<title>Paste Unformatted Text with a Shortcut in Microsoft Word</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/mCdXwMirBnc/</link>
		<comments>http://www.itfall.com/paste-unformatted-text-with-a-shortcut-in-microsoft-word/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 08:05:43 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[Paste Unformatted Text]]></category>
		<category><![CDATA[Shortcut]]></category>
		<category><![CDATA[Word 2010]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=364</guid>
		<description><![CDATA[Many times when you need to paste text from the web, an HTML document, or even other MS Word documents, you may want to just get the text without the formatting and styling that is carried with it. There are several ways to do that, but out of the box, Microsoft Word doesn&#8217;t give an easy way, that is with one keyboard shortcut, to do that. The easiest way available with Microsoft Word 2010 is to right click and then click the &#8220;A&#8221; icon (&#8220;Keep Text Only&#8221; icon). Now, this is easy but if you need to use that feature&#8230; <a href="http://www.itfall.com/paste-unformatted-text-with-a-shortcut-in-microsoft-word/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/reverse-numbered-list-in-microsoft-word/' rel='bookmark' title='Permanent Link: Reverse Numbered List in Microsoft Word'>Reverse Numbered List in Microsoft Word</a></li>
<li><a href='http://www.itfall.com/converting-word-docx-to-doc-using-microsoft-free-programs/' rel='bookmark' title='Permanent Link: Converting Word .docx to .doc using Microsoft FREE programs'>Converting Word .docx to .doc using Microsoft FREE programs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-365" title="Paste Unformatted Text" src="http://www.itfall.com/wp-content/uploads/2011/03/paste-unformatted-text.png" alt="paste unformatted text Paste Unformatted Text with a Shortcut in Microsoft Word" width="171" height="174" />Many times when you need to paste text from the web, an HTML document, or even other MS Word documents, you may want to just get the text without the formatting and styling that is carried with it. There are several ways to do that, but out of the box, Microsoft Word doesn&#8217;t give an easy way, that is with one keyboard shortcut, to do that. The easiest way available with Microsoft Word 2010 is to right click and then click the &#8220;A&#8221; icon (&#8220;Keep Text Only&#8221; icon). Now, this is easy but if you need to use that feature many times, it can get annoying and time waster.</p>
<p>The fastest way is to have a keyboard shortcut which does just that. What we are going to do is create a Word Macro and assign a shortcut to it. The following instructions were done using Microsoft Word 2010, but really this Word Macro can be used with almost all Word versions being used today.</p>
<p>Before we create the Macro, if the Developer tab is not visible, do the following to make it show up:</p>
<ol>
<li>From the menu, click &#8220;File&#8221; then select &#8220;Options&#8221;</li>
<li>Select &#8220;Customize Ribbon&#8221;</li>
<li>On the right side under &#8220;Customize the Ribbon&#8221; section, check the &#8220;Developer&#8221; checkbox.</li>
<li>Then click the &#8220;OK&#8221; button.</li>
</ol>
<h2>Creating the Paste Unformatted Text Macro,</h2>
<ol>
<li>Select the &#8220;Developer&#8221; tab</li>
<li>Click the &#8220;Visual Basic&#8221; button.</li>
<li>On the left, in the Project panel, click the plus sign next to &#8220;Normal&#8221; to expand</li>
<li>Then click the plus sign next to &#8220;Modules&#8221;</li>
<li>Double click &#8220;NewMacros&#8221;</li>
<li>Copy and Paste the following code to the Code window in the Visual Basic editor. (put the mouse cursor at the end of the document before pasting to keep the previously created Macros)
<pre class="brush: vb; title: ;">
Sub PasteSpecial()
Selection.PasteSpecial DataType:=wdPasteText
End Sub
</pre>
</li>
<li>Click the &#8220;save&#8221; button. Once you do that a new Macro has been saved with name &#8220;PasteSpecial&#8221;</li>
<li>Close the Visual Basic window.</li>
</ol>
<h2>Assigning to the Macro a keyboard shortcut,</h2>
<p>What we are going to do next is assign a keyboard shortcut to run the macro. We know that to paste text normally, we use <strong>ctrl + V</strong> keyboard shortcut, so it would be a good idea to assign our macro the <strong>alt + V</strong> to make it easy for us to remember and differentiate the normal paste from the special paste without formatting.</p>
<ol>
<li>From the menu, click &#8220;File&#8221; then select  the &#8220;Customize Ribbon&#8221; tab</li>
<li>Look for the &#8220;Keyboard Shortcuts&#8221; label and click the &#8220;Customize&#8221; button</li>
<li>In the &#8220;Categories&#8221; section, click anywhere inside it and then press the &#8220;M&#8221; key so that it gets you to the Macros category.</li>
<li>At the right side and under &#8220;Macros&#8221; look for &#8220;PasteSpecial&#8221; and select it.</li>
<li>Then under &#8220;Press new shortcut key&#8221; label, put you mouse cursor in the field.</li>
<li>Press the keyboard combination <strong>alt + V</strong> (hold the alt key and then press the &#8220;V&#8221; key)</li>
<li>Then click the &#8220;Assign&#8221; button.</li>
<li>Then click the &#8220;Close&#8221; button to close the window, and then &#8220;Ok&#8221; for the &#8220;Word Options&#8221; window.</li>
</ol>
<p>That&#8217;s it, now you have the keyboard shortcut <strong>alt + V</strong> to paste text without style or formatting.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fpaste-unformatted-text-with-a-shortcut-in-microsoft-word%2F&amp;title=Paste%20Unformatted%20Text%20with%20a%20Shortcut%20in%20Microsoft%20Word"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 Paste Unformatted Text with a Shortcut in Microsoft Word"  title="Paste Unformatted Text with a Shortcut in Microsoft Word" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/reverse-numbered-list-in-microsoft-word/' rel='bookmark' title='Permanent Link: Reverse Numbered List in Microsoft Word'>Reverse Numbered List in Microsoft Word</a></li>
<li><a href='http://www.itfall.com/converting-word-docx-to-doc-using-microsoft-free-programs/' rel='bookmark' title='Permanent Link: Converting Word .docx to .doc using Microsoft FREE programs'>Converting Word .docx to .doc using Microsoft FREE programs</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=mCdXwMirBnc:THSgd4OtoSY:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=mCdXwMirBnc:THSgd4OtoSY:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=mCdXwMirBnc:THSgd4OtoSY:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=mCdXwMirBnc:THSgd4OtoSY:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=mCdXwMirBnc:THSgd4OtoSY:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=mCdXwMirBnc:THSgd4OtoSY:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=mCdXwMirBnc:THSgd4OtoSY:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=mCdXwMirBnc:THSgd4OtoSY:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/mCdXwMirBnc" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/paste-unformatted-text-with-a-shortcut-in-microsoft-word/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.itfall.com/paste-unformatted-text-with-a-shortcut-in-microsoft-word/</feedburner:origLink></item>
		<item>
		<title>Reverse Numbered List in Microsoft Word</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/-b4euX-d5f0/</link>
		<comments>http://www.itfall.com/reverse-numbered-list-in-microsoft-word/#comments</comments>
		<pubDate>Sun, 06 Mar 2011 04:14:18 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[Reverse Numbered List]]></category>
		<category><![CDATA[Word 2010]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=345</guid>
		<description><![CDATA[Making Numbered lists in Microsoft Word is pretty easy and anyone with primary knowledge about Word would make one even without trying; like when you type &#8220;1.&#8221; followed by space, Word would automatically start a numbered list for you. But when it comes to making a reverse numbered list or a top 10 list with a count down style, Word provides no ability of making such lists out of the box.
So how could we make one? Microsoft Word provides a feature for developers to create Macros in Visual Basic programming language which we can use to manipulate data easily and in&#8230; <a href="http://www.itfall.com/reverse-numbered-list-in-microsoft-word/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/paste-unformatted-text-with-a-shortcut-in-microsoft-word/' rel='bookmark' title='Permanent Link: Paste Unformatted Text with a Shortcut in Microsoft Word'>Paste Unformatted Text with a Shortcut in Microsoft Word</a></li>
<li><a href='http://www.itfall.com/converting-word-docx-to-doc-using-microsoft-free-programs/' rel='bookmark' title='Permanent Link: Converting Word .docx to .doc using Microsoft FREE programs'>Converting Word .docx to .doc using Microsoft FREE programs</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  src="http://www.itfall.com/wp-content/uploads/2011/03/reverse-list.png" alt="reverse list Reverse Numbered List in Microsoft Word" title="Reverse List Example" width="264" height="190" class="alignright size-full wp-image-346" />Making Numbered lists in Microsoft Word is pretty easy and anyone with primary knowledge about Word would make one even without trying; like when you type &#8220;1.&#8221; followed by space, Word would automatically start a numbered list for you. But when it comes to making a reverse numbered list or a top 10 list with a count down style, Word provides no ability of making such lists out of the box.</p>
<p>So how could we make one? Microsoft Word provides a feature for developers to create Macros in Visual Basic programming language which we can use to manipulate data easily and in an automated way. Now, you don&#8217;t need to know about coding to make the reverse list, I will provide you with step-by-step instructions on what to do to create the Marco and then be able to use it from now and on to create Reverse Numbered Lists. (the Macro code credit goes to <a href="http://word.tips.net/Pages/T001759_Reverse_Numbered_Lists.html" target="_blank">Word Tips website</a>)</p>
<p>The code used can work with Microsoft Word 97, 2000, 2002, 2003, 2007, and 2010 (by the time of this writing). The interface instructions to create these Macros differ between Word versions. I&#8217;ll provide you with instructions on how to do it with Word 2010.</p>
<h2>Showing the Developer tab,</h2>
<p>If the &#8220;Developer&#8221; tab in Word is not visible, do the following to  show it up:</p>
<ol>
<li>From the menu, click &#8220;File&#8221; then select &#8220;Options&#8221;</li>
<li>Select &#8220;Customize Ribbon&#8221;</li>
<li>On the right side under &#8220;Customize the Ribbon&#8221; section, check the &#8220;Developer&#8221; checkbox.</li>
<li>Then click the &#8220;OK&#8221; button.</li>
</ol>
<h2>Creating the Macro,</h2>
<ol>
<li>Select the &#8220;Developer&#8221; tab</li>
<li>Click the &#8220;Visual Basic&#8221; button.</li>
<li>On the left, in the Project panel, click the plus sign next to &#8220;Normal&#8221; to expand</li>
<li>Then click the plus sign next to &#8220;Modules&#8221;</li>
<li>Double click &#8220;NewMacros&#8221;</li>
<li>Copy and Paste the following code to the Code window in the Visual Basic editor. (put the mouse cursor at the end of the document before pasting to keep the previously created Macros)
<pre class="brush: vb; title: ;">
Sub RevList()
Dim ShowFlag As Boolean
Dim Numparas As Integer
Dim Counter As Integer

Numparas = Selection.Paragraphs.Count
Selection.MoveLeft Unit:=wdCharacter, Count:=1
ShowFlag = ActiveWindow.View.ShowFieldCodes
ActiveWindow.View.ShowFieldCodes = True
DoList Numparas
Counter = 1
While Counter &lt; Numparas
Selection.Move Unit:=wdParagraph, Count:=1
DoList Numparas
Counter = Counter + 1
Wend
ActiveWindow.View.ShowFieldCodes = ShowFlag
ActiveDocument.Select
ActiveDocument.Fields.Update
End Sub

Private Sub DoList(Cnt As Integer)
Selection.Extend
Selection.MoveRight Unit:=wdCharacter, Count:=1
If InStr(Selection.Text, &quot;SEQ&quot;) &gt; 0 Then
Selection.MoveRight Unit:=wdCharacter, Count:=2
Selection.Delete Unit:=wdCharacter, Count:=1
Else
Selection.Collapse Direction:=wdCollapseStart
End If
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _
PreserveFormatting:=False
Selection.TypeText Text:=&quot;=&quot; &amp; Cnt + 1 &amp; &quot;-&quot;
Selection.Fields.Add Range:=Selection.Range, Type:=wdFieldEmpty, _
PreserveFormatting:=False
Selection.TypeText Text:=&quot;SEQ RevList&quot;
With Selection.ParagraphFormat
.LeftIndent = InchesToPoints(0.5)
.FirstLineIndent = InchesToPoints(-0.5)
End With
Selection.MoveRight Unit:=wdCharacter, Count:=4
Selection.InsertAfter &quot;.&quot; &amp; vbTab
End Sub
</pre>
</li>
<li>Click the &#8220;save&#8221; button. Once you do that a new Macro has been saved with name &#8220;RevList&#8221;</li>
<li>Close the Visual Basic window.</li>
</ol>
<h2>Adding the Macro as a button in Word</h2>
<ol>
<li>So back to Word, click &#8220;File&#8221; from the menu then select &#8220;Options&#8221;</li>
<li>Select  the &#8220;Customize Ribbon&#8221; tab</li>
<li>In the &#8220;Choose commands From&#8221; section, select &#8220;Macros&#8221; from the drop down list.</li>
<li>In the box below it, look for &#8220;Normal.NewMacros.RevList&#8221; and select it</li>
<li>On the right side and under &#8220;Customize the Ribbon&#8221;, select &#8220;Main Tabs&#8221; from the drop down list</li>
<li>Select the &#8220;Home&#8221; tab</li>
<li>Click the &#8220;New Group&#8221; button</li>
<li>While the new group tab is selected, click the &#8220;Rename&#8221; button</li>
<li>Name this group whatever you like, if you like, name it &#8220;My Buttons&#8221;</li>
<li>While the &#8220;My Buttons&#8221; is selected (and that RevList macro selected), click the &#8220;Add &gt;&gt;&#8221; button</li>
<li>Now it will be automatically selected, so click the &#8220;Rename&#8221; button to rename Normal.NewMacros.RevList and give it the name you like, for example, &#8220;Reverse List&#8221;. Also it&#8217;s a good idea to assign it an icon, for example a down arrow icon.</li>
<li>Now click the &#8220;Ok&#8221; button. Then click the Ok button again for the Word Options dialog to save the changes.</li>
</ol>
<p>What happened now is that you will see a button for the &#8220;Reverse List&#8221; macro added under the Home tab at the far right group of it.</p>
<h2>Using the Reverse List button,</h2>
<p>Write down your list in Word as paragraphs (you press Enter after each list item). For example:</p>
<p>Microsoft Windows 7</p>
<p>Microsoft Windows Vista</p>
<p>Microsoft Windows XP</p>
<p>Select the list and then press the our &#8220;Reverse List&#8221; button, and here you go, will see that a reverse list has been created like this:</p>
<p>3. Microsoft Windows 7</p>
<p>2. Microsoft Windows Vista</p>
<p>1. Microsoft Windows XP</p>
<p>Now if you wanted to add a new item in the list, anywhere in it (each list item should be a paragraph), do so then select the entire list and click the &#8220;Reverse List&#8221; button again, it will automatically reassign the numbers in the list. for Example, we added Microsoft Windows 2000 to the list:</p>
<p>3. Microsoft Windows 7</p>
<p>2. Microsoft Windows Vista</p>
<p>1. Microsoft Windows XP</p>
<p>Microsoft Windows 2000</p>
<p>Select the entire list, and then click the button, it becomes:</p>
<p>4. Microsoft Windows 7</p>
<p>3. Microsoft Windows Vista</p>
<p>2. Microsoft Windows XP</p>
<p>1. Microsoft Windows 2000</p>
<p><strong>Advanced instructions,</strong></p>
<p>Now, you are set to go with that, but if you wanted to change the &#8220;hanging indent&#8221;, you have to edit the Macro code a bit. Change the lines in the DoList macro where you will see the LeftIndent and FirstLineIndent properties which you can set there.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Freverse-numbered-list-in-microsoft-word%2F&amp;title=Reverse%20Numbered%20List%20in%20Microsoft%20Word"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 Reverse Numbered List in Microsoft Word"  title="Reverse Numbered List in Microsoft Word" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/paste-unformatted-text-with-a-shortcut-in-microsoft-word/' rel='bookmark' title='Permanent Link: Paste Unformatted Text with a Shortcut in Microsoft Word'>Paste Unformatted Text with a Shortcut in Microsoft Word</a></li>
<li><a href='http://www.itfall.com/converting-word-docx-to-doc-using-microsoft-free-programs/' rel='bookmark' title='Permanent Link: Converting Word .docx to .doc using Microsoft FREE programs'>Converting Word .docx to .doc using Microsoft FREE programs</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=-b4euX-d5f0:0pNU41NiRzI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=-b4euX-d5f0:0pNU41NiRzI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=-b4euX-d5f0:0pNU41NiRzI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=-b4euX-d5f0:0pNU41NiRzI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=-b4euX-d5f0:0pNU41NiRzI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=-b4euX-d5f0:0pNU41NiRzI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=-b4euX-d5f0:0pNU41NiRzI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=-b4euX-d5f0:0pNU41NiRzI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/-b4euX-d5f0" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/reverse-numbered-list-in-microsoft-word/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.itfall.com/reverse-numbered-list-in-microsoft-word/</feedburner:origLink></item>
		<item>
		<title>Is somebody sending spam from your email address?</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/qUdWNFwu5T4/</link>
		<comments>http://www.itfall.com/is-somebody-sending-spam-from-your-email-address/#comments</comments>
		<pubDate>Mon, 28 Feb 2011 05:55:53 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[Email]]></category>
		<category><![CDATA[password]]></category>
		<category><![CDATA[spam email]]></category>
		<category><![CDATA[spyware]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=335</guid>
		<description><![CDATA[For a long period of time, I was receiving spam emails from one of my friends. Of course, I was positive that she wasn&#8217;t really sending them, so I have decided to discuss this with her and see if I could help stop the spam emails from being sent to me (and to her other contacts).
First off, we have to clear things up. You are here because you have discovered that some people are receiving emails from you (your email address) and you know that you have never sent them those emails. Those could be your friends, your contacts, or&#8230; <a href="http://www.itfall.com/is-somebody-sending-spam-from-your-email-address/" class="read_more">[Full Article]</a>


No related posts.]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-341" title="Spam Email" src="http://www.itfall.com/wp-content/uploads/2011/02/spam-email.jpg" alt="spam email Is somebody sending spam from your email address?" width="265" height="400" />For a long period of time, I was receiving spam emails from one of my friends. Of course, I was positive that she wasn&#8217;t really sending them, so I have decided to discuss this with her and see if I could help stop the spam emails from being sent to me (and to her other contacts).</p>
<p>First off, we have to clear things up. You are here because you have discovered that some people are receiving emails from you (your email address) and you know that you have never sent them those emails. Those could be your friends, your contacts, or people you&#8217;ve never knew. This is a problem that may have different causes. Some of the causes you have control over and could be fixed, but others you don&#8217;t. However, whatever that cause was, you should act immediately to prevent further damage because it is possible that your email account has been compromised and you could also lose your account.</p>
<p>Basically there are two main reasons why people could receive emails from your email address that you have really never sent.</p>
<h2>By forging the &#8220;From&#8221; field of an email.</h2>
<p>It is possible to send emails with a &#8220;From&#8221; field containing an email address that the sender really have no access to. In such a case, your account or password has not been stolen or compromised. You don&#8217;t really have control over this. The sender in the major cases is really a virus and automated bots that have harvested email addresses and used them in the From field to send spam emails to others. This doesn&#8217;t mean that your computer is infected with a virus, the sender computer could just be anywhere. Email companies have established methods to fight such type of emails and some of them warn the receiver that the source of such an email may have not come from the source that it claims.</p>
<h2>Your account has been compromised.</h2>
<p>This means that somebody has access to your account, it could be individuals or even automated bots which have stolen your password and are now using your account to send emails to others especially your contacts. In such a case you might even see those emails in the &#8220;Sent&#8221; mailbox, but not necessarily. Let&#8217;s list the possibilities of who could have access or stolen your password someway or another:</p>
<ul>
<li>Someone has access to your computer and you happen to associate access to your account automatically (without the need to enter a password).</li>
<li>Somebody has access to your computer, and have stolen your password using keylogger software. Similarly if you access your account at an Internet café, someone might steal your password the same way.</li>
<li>Spyware programs, whether on your computer or at an Internet café can also steal your password and other information.</li>
<li>Of course it could be that someone just guessed your password.</li>
<li>There are also other reasons like stealing your password with spoofing the identify of your email provider (through a web page linked in an email); you unknowingly gave them your password by thinking that you&#8217;re accessing your account or so.</li>
</ul>
<p>In any of these situations, what you have to do is pretty similar, and changing your password is <strong>not enough</strong>. The reason for that is those who gained access to your account also have access to your &#8220;secret question&#8221;  and other credentials that are used to recover email accounts. They can also change your &#8220;alternate account&#8221; and even the mobile phone number (if the email service provides such type of methodology to recover accounts).</p>
<p><strong>So, what you have to do is the following:</strong></p>
<ul>
<li>Change your password of your email account, and make it hard to guess. Have a password of at least 8 characters and use special characters to make the password harder to crack.</li>
<li>Change your &#8220;Secret Question&#8221; and its answer.</li>
<li>Check the alternate email address if it has been changed, if so restore it to the correct address (if you still have access to that other account).</li>
<li>Check the stored mobile phone number to see if it is yours and update it accordingly.</li>
</ul>
<p><strong>Take the following cautions into consideration:</strong></p>
<ul>
<li>Avoid accessing your email account at an Internet café, even if you trust them that they might not intentionally install keylogger programs to steal passwords, they might have spyware programs that are installed on their computers without their knowledge.</li>
<li>Install on your computer good Anti-spyware and Antivirus programs, I recommend <a title="Get Avira AntiVir Premium" href="http://esd.element5.com/product.html?productid=300072347&amp;backlink=http%3A%2F%2Fwww.itfall.com%2Fwindows-effective-security-programs-and-applications&amp;cookies=1&amp;affiliateid=200126030">Avira</a>.</li>
<li>Make sure that no one can access your account at your computer.</li>
<li>Be ware of phishing emails and don&#8217;t follow the links provided in it.</li>
</ul>
<p>If you do all that and some people are still receiving spam emails from your email address, then the problem is probably that computer bots are sending emails with a forged &#8220;From&#8221; field. In such a case, there is nothing that you can do further. But at least you may have solved the most important cause that you should handle. And you might actually were having the 2 problems, well in such a case you solved one and saved your account!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fis-somebody-sending-spam-from-your-email-address%2F&amp;title=Is%20somebody%20sending%20spam%20from%20your%20email%20address%3F"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 Is somebody sending spam from your email address?"  title="Is somebody sending spam from your email address?" /></a> </p>

<p>No related posts.</p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=qUdWNFwu5T4:7OyBOQjzeAc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=qUdWNFwu5T4:7OyBOQjzeAc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=qUdWNFwu5T4:7OyBOQjzeAc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=qUdWNFwu5T4:7OyBOQjzeAc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=qUdWNFwu5T4:7OyBOQjzeAc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=qUdWNFwu5T4:7OyBOQjzeAc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=qUdWNFwu5T4:7OyBOQjzeAc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=qUdWNFwu5T4:7OyBOQjzeAc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/qUdWNFwu5T4" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/is-somebody-sending-spam-from-your-email-address/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itfall.com/is-somebody-sending-spam-from-your-email-address/</feedburner:origLink></item>
		<item>
		<title>Subscribe to RSS Feeds with RSS Bandit</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/cgsEso_gUUw/</link>
		<comments>http://www.itfall.com/subscribe-to-rss-feeds-with-rss-bandit/#comments</comments>
		<pubDate>Fri, 14 Jan 2011 15:25:29 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[RSS Bandit]]></category>
		<category><![CDATA[RSS Feeds]]></category>
		<category><![CDATA[Subscribe]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=314</guid>
		<description><![CDATA[This tutorial is useful for those who don&#8217;t know how to subscribe to RSS feeds and also to point you to a nice RSS Feed Reader, RSS Bandit, that you can download and is totally free.
What is RSS useful for?
To put it simply, if there is a blog that publishes posts considered interesting by you, how would you be able to stay up-to-date with that blog? How would you know that the blog has published a new post? For sure you can go that blog (or website) on a daily basis, or even several times during the day,&#8230; <a href="http://www.itfall.com/subscribe-to-rss-feeds-with-rss-bandit/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/copy-file-website-to-website-php-script/' rel='bookmark' title='Permanent Link: Copy File from Website to Website with a PHP Script'>Copy File from Website to Website with a PHP Script</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  src="http://www.itfall.com/wp-content/uploads/2011/01/rss-bandit.jpg" alt="rss bandit Subscribe to RSS Feeds with RSS Bandit" title="RSS Bandit Logo" width="353" height="259" class="alignright size-full wp-image-315" />This tutorial is useful for those who don&#8217;t know how to subscribe to RSS feeds and also to point you to a nice RSS Feed Reader, RSS Bandit, that you can download and is totally free.</p>
<p><strong>What is RSS useful for?</strong></p>
<p>To put it simply, if there is a blog that publishes posts considered interesting by you, how would you be able to stay up-to-date with that blog? How would you know that the blog has published a new post? For sure you can go that blog (or website) on a daily basis, or even several times during the day, but as you can see this takes time and that blog may have not published a new post (or article). And if you have many sites or blogs that you need to keep up with, the process may just get cumbersome and wastes a lot of your time. RSS, which stands for Really Simple Syndication, gives you the ability to get updates for a number of blogs that you subscribe to without the need to visit those sites / blogs. This keeps you up-to-date with those blogs and saves a lot of valuable time.</p>
<p><strong>What is an RSS Feed?</strong></p>
<p>An &#8220;RSS Feed&#8221; is what a blog generates to syndicate the blog content with &#8220;RSS Feed Readers&#8221;.</p>
<p><strong>What is an RSS Feed URL?</strong></p>
<p>You are probably familiar with what URL or Link usually means. A URL that you enter in a web browser address bar takes you to a specific page. For an RSS feed reader to get the content from a specific blog, it needs an RSS Feed URL so that it can access and show you the content.<br />
For example, the RSS Feed URL of my website that lets you get blog post updates is http://feeds.itfall.com/itfall</p>
<p>This is what an RSS Feed Reader needs to get from you so that it can read the blog content.</p>
<p><strong>How to identify an RSS Feed URL on a website?</strong></p>
<p>You would usually find the URL as a link with an icon that looks like this (it can have different sizes, however):<br />
<a href="http://feeds.itfall.com/itfall"><img src="http://www.itfall.com/wp-content/uploads/2011/01/rss-feed-icon.png" alt="rss feed icon Subscribe to RSS Feeds with RSS Bandit" title="RSS Feed Icon" width="36" height="36" class="alignnone size-full wp-image-318" /></a><br />
Or it can simply be a link that contains text like <a href="http://feeds.itfall.com/itfall">RSS feed</a> or <a href="http://feeds.itfall.com/itfall">RSS</a>. In any case of these, all you need to do to get the URL copied is right click over it and select &#8220;Copy Shortcut&#8221; (Internet Explorer) or &#8220;Copy Link Location&#8221; (Mozilla Firefox) or &#8220;Copy link address&#8221; (Google Chrome). And then you have to paste the URL to an &#8220;RSS Feed Reader&#8221;.</p>
<p><strong>RSS Feed Readers</strong></p>
<p>Now, there are many RSS Feed Readers out there and some may be web based, others are software. In this tutorial, I am just going to show you one RSS Reader which you can download and install. It is called &#8220;RSS Bandit&#8221;.</p>
<p><strong>Subscribing to RSS Feeds with RSS Bandit (the version installed in this tutorial is 1.9.0.1002)</strong></p>
<ol>
<li><a href="http://rssbandit.org/download/rss-bandit-download/" target="_blank">Get RSS Bandit</a> from their website and see the software Prerequisites. You need the .Net Framework v3.5 installed.</li>
<li>Run the installer file, then click &#8220;Next&#8221; on the Welcome dialog.</li>
<li>Choose &#8220;Just me&#8221; or &#8220;Everyone&#8221; then click &#8220;Next&#8221;.</li>
<li>Then click &#8220;Next&#8221; again to start installation.</li>
<li>Once finished, click the &#8220;close&#8221; button.</li>
<li>You should now see the shortcut of the program on the desktop, double click it to start the program.</li>
<li>On the left pane, you will see a section called &#8220;My Feeds&#8221;. As you can see it already contains feeds that were added by the program when it was installed. These folders are meant to categorize your feeds, you can add or delete folders as you wish. Suppose we want to add a feed to the &#8220;Blogs&#8221; folder, tick the small triangle next to it to see what it contains.</li>
<li>Then click over the &#8220;Blogs&#8221; folder to select it. Then right click over it, and select &#8220;New Feed Subscription&#8221;.</li>
<li>Click &#8220;Next&#8221;on the Wizard Welcome Page.</li>
<li>Enter the URL of the feed. For example, if you want to subscribe to my blog, enter this URL: <a href="http://feeds.itfall.com/itfall">http://feeds.itfall.com/itfall</a></li>
<li>Then click the &#8220;Next&#8221; button.</li>
<li>It will automatically fill in the title of the feed as detected, but you change that title as you like.</li>
<li>Since we have previously right clicked over the Blogs folder, it has been selected automatically. But you can change it here if you want.</li>
<li>On the Subscription Credentials page you can enter the user name and password of the feed (if any). In our case, and like most cases with blogs, you don&#8217;t need to. So just leave them empty and click &#8220;Next&#8221;.</li>
<li>On the Feed/Item Control page, you can select the &#8220;Update Frequency&#8221;. 60 minutes is the default. Click &#8220;Next&#8221; thereafter.</li>
<li>On the Feed/Item Display, just click &#8220;Next&#8221; as we don&#8217;t need to use a custom formatter.</li>
<li>Then click &#8220;Finish&#8221;</li>
</ol>
<p>After that, to get to see the content, select the Feed in the left pane. Then look at the right pane in the &#8220;Feed Details&#8221; section to see the blog posts. When you select one, you will see the content in the lower section.<br />
Also, if you see a plus sign next to a feed item, it means that the post has comments, and if you click it, you will see those comment items, and then when you click on one, you will see the content of that comment in the lower section.</p>
<p>If you want the RSS Bandit program to start automatically after logon to Windows, do the following:</p>
<ol>
<li>From the menu bar select &#8220;Tools&#8221;, and then click &#8220;Options&#8221;</li>
<li>In the &#8220;Startup&#8221; section, check the &#8220;Start application after logon to Windows&#8221; checkbox then click &#8220;OK&#8221;</li>
</ol>
<p>So that&#8217;s it, it is really that simple.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fsubscribe-to-rss-feeds-with-rss-bandit%2F&amp;title=Subscribe%20to%20RSS%20Feeds%20with%20RSS%20Bandit"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 Subscribe to RSS Feeds with RSS Bandit"  title="Subscribe to RSS Feeds with RSS Bandit" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/copy-file-website-to-website-php-script/' rel='bookmark' title='Permanent Link: Copy File from Website to Website with a PHP Script'>Copy File from Website to Website with a PHP Script</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=cgsEso_gUUw:7L46zDZorvI:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=cgsEso_gUUw:7L46zDZorvI:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=cgsEso_gUUw:7L46zDZorvI:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=cgsEso_gUUw:7L46zDZorvI:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=cgsEso_gUUw:7L46zDZorvI:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=cgsEso_gUUw:7L46zDZorvI:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=cgsEso_gUUw:7L46zDZorvI:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=cgsEso_gUUw:7L46zDZorvI:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/cgsEso_gUUw" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/subscribe-to-rss-feeds-with-rss-bandit/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itfall.com/subscribe-to-rss-feeds-with-rss-bandit/</feedburner:origLink></item>
		<item>
		<title>Make Windows 7 taskbar buttons REALLY never combine</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/e-wk_GKiqu8/</link>
		<comments>http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 23:28:08 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[taskbar buttons]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=278</guid>
		<description><![CDATA[In Windows XP and Vista we used to be able to prevent taskbar button grouping easily. Microsoft with Windows 7 has removed such feature. They only allowed what they call in their vocabulary &#8220;Never Combine&#8221; which practically separates taskbar buttons but keeps buttons representing the same program grouped together. So, even if you try to organize the buttons on the taskbar (by dragging them with the mouse cursor, which is a new cool feature in Windows 7), buttons belonging to the same program will be moved together.
To make the taskbar buttons always separated, you have to set the settings&#8230; <a href="http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/virtualbox-windows-7-shared-folders/' rel='bookmark' title='Permanent Link: VirtualBox Windows 7 Shared Folders'>VirtualBox Windows 7 Shared Folders</a></li>
<li><a href='http://www.itfall.com/viewing-scheduled-windows-chkdsk-error-checking-report-log/' rel='bookmark' title='Permanent Link: Viewing Scheduled Windows CHKDSK (Error-checking) Report Log'>Viewing Scheduled Windows CHKDSK (Error-checking) Report Log</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' display: block; margin-right: auto; margin-left: auto;'  src="http://www.itfall.com/wp-content/uploads/2010/11/windows-7-taskbar-buttons-grouping.png" alt="windows 7 taskbar buttons grouping Make Windows 7 taskbar buttons REALLY never combine" title="Making Windows 7 taskbar buttons with no grouping" width="540" height="166" class="aligncenter size-full wp-image-279" />In Windows XP and Vista we used to be able to prevent taskbar button grouping easily. Microsoft with Windows 7 has removed such feature. They only allowed what they call in their vocabulary &#8220;Never Combine&#8221; which practically separates taskbar buttons but keeps buttons representing the same program grouped together. So, even if you try to organize the buttons on the taskbar (by dragging them with the mouse cursor, which is a new cool feature in Windows 7), buttons belonging to the same program will be moved together.</p>
<p>To make the taskbar buttons always separated, you have to set the settings for them in Taskbar properties and use a small utility to tweak the Windows Taskbar buttons behavior.</p>
<p>Setting Windows 7 taskbar properties,</p>
<ol>
<li>Right click the taskbar then click &#8220;properties&#8221;</li>
<li>For the Taskbar buttons drop down menu, select &#8220;Never Combine&#8221;</li>
<li>This part is optional, but I also like to check the &#8220;Use small icons&#8221; checkbox. Just to make it more like our beloved Windows XP :)</li>
<li>Click the &#8220;OK&#8221; button</li>
</ol>
<p>Making the taskbar buttons never &#8220;group&#8221;,</p>
<ol>
<li><a href="http://rammichael.com/7-taskbar-tweaker" target="_blank">Go to this page to download &#8220;7 Taskbar Tweaker&#8221;</a></li>
<li>If you have 32-bit version of Windows 7, choose &#8220;7_Taskbar_Tweaker.rar&#8221; as your download. If you have 64-bit Windows 7, choose 7_Taskbar_Tweaker_x64.rar</li>
<li>Extract the RAR archive file. The download is a RAR archive file, you should have WinRAR program to extract its content.</li>
<li>Move the program directory to any place you want, I prefer to put it in &#8220;Program Files&#8221;</li>
<li>start the program by double clicking its file</li>
<li>In the grouping section, select &#8220;Don&#8217;t Group&#8221;</li>
<li>click the &#8220;Apply&#8221; button</li>
<li>Now, click the &#8220;settings&#8221; button</li>
<li>The settings apply while the program is running, so you should check the &#8220;Run at startup&#8221; checkbox</li>
<li>then click the &#8220;OK&#8221; button (you could also hide the tray icon if you check the &#8220;Hide tray icon&#8221; checkbox)</li>
<li>click the &#8220;x&#8221; (close) button to close the window (the program will remain running)</li>
</ol>
<p>(it should be noted that after you setup the utility as instructed above, you should close opened windows and open them again for the new taskbar behavior to be in effect)</p>
<p>That&#8217;s it, another Windows 7 annoyance defeated :)</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fmake-windows-7-taskbar-buttons-really-never-combine%2F&amp;title=Make%20Windows%207%20taskbar%20buttons%20REALLY%20never%20combine"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 Make Windows 7 taskbar buttons REALLY never combine"  title="Make Windows 7 taskbar buttons REALLY never combine" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/virtualbox-windows-7-shared-folders/' rel='bookmark' title='Permanent Link: VirtualBox Windows 7 Shared Folders'>VirtualBox Windows 7 Shared Folders</a></li>
<li><a href='http://www.itfall.com/viewing-scheduled-windows-chkdsk-error-checking-report-log/' rel='bookmark' title='Permanent Link: Viewing Scheduled Windows CHKDSK (Error-checking) Report Log'>Viewing Scheduled Windows CHKDSK (Error-checking) Report Log</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=e-wk_GKiqu8:iCVG2SF9K5M:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=e-wk_GKiqu8:iCVG2SF9K5M:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=e-wk_GKiqu8:iCVG2SF9K5M:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=e-wk_GKiqu8:iCVG2SF9K5M:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=e-wk_GKiqu8:iCVG2SF9K5M:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=e-wk_GKiqu8:iCVG2SF9K5M:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=e-wk_GKiqu8:iCVG2SF9K5M:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=e-wk_GKiqu8:iCVG2SF9K5M:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/e-wk_GKiqu8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		<feedburner:origLink>http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/</feedburner:origLink></item>
		<item>
		<title>Windows 7 Toolbar, how to create it</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/A4YmGKXDE5M/</link>
		<comments>http://www.itfall.com/windows-7-toolbar-how-to-create-it/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 21:25:53 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[Windows]]></category>
		<category><![CDATA[dock]]></category>
		<category><![CDATA[side toolbar]]></category>
		<category><![CDATA[Toolbar]]></category>
		<category><![CDATA[True Launch Bar]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=244</guid>
		<description><![CDATA[Microsoft, with its Windows 7, has removed one of the most useful features it had with XP and Vista. Previously, we were able to drag a toolbar and dock it to one of the sides of the desktop. This could also be achieved with dragging a folder to a side of the desktop to create a toolbar where we can place shortcuts and links for convenient use. All that was gone with Windows 7.
After searching for a solution, it just seemed that the only way to replace the missing feature is by using a third-party software. And with all&#8230; <a href="http://www.itfall.com/windows-7-toolbar-how-to-create-it/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/virtualbox-windows-7-shared-folders/' rel='bookmark' title='Permanent Link: VirtualBox Windows 7 Shared Folders'>VirtualBox Windows 7 Shared Folders</a></li>
<li><a href='http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/' rel='bookmark' title='Permanent Link: Make Windows 7 taskbar buttons REALLY never combine'>Make Windows 7 taskbar buttons REALLY never combine</a></li>
<li><a href='http://www.itfall.com/windows-xp-default-administrator-account-security-hole/' rel='bookmark' title='Permanent Link: Windows XP Default Administrator Account , A Security Hole'>Windows XP Default Administrator Account , A Security Hole</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  src="http://www.itfall.com/wp-content/uploads/2010/11/true-launch-bar-toolbar.png" alt="true launch bar toolbar Windows 7 Toolbar, how to create it" title="True Launch Bar toolbar" width="198" height="551" class="alignright size-full wp-image-245" />Microsoft, with its Windows 7, has removed one of the most useful features it had with XP and Vista. Previously, we were able to drag a toolbar and dock it to one of the sides of the desktop. This could also be achieved with dragging a folder to a side of the desktop to create a toolbar where we can place shortcuts and links for convenient use. All that was gone with Windows 7.</p>
<p>After searching for a solution, it just seemed that the only way to replace the missing feature is by using a third-party software. And with all the docking programs and software out there, one program was able to impress me. It allowed me to create just what that lost windows feature would allow me to. The presented image in this post just shows you what &#8220;<a href="https://secure.avangate.com/affiliate.php?ACCOUNT=TRULACHB&#038;AFFILIATE=22089&#038;PATH=http%3A%2F%2Fwww.truelaunchbar.com" target="_blank" title="True Launch Bar" rel="nofollow">True Launch Bar</a>&#8221; software can do; it was just what I wanted!</p>
<p>So here are step-by-step instructions for creating a Windows 7 side toolbar:</p>
<ol>
<li><a href="https://secure.avangate.com/affiliate.php?ACCOUNT=TRULACHB&#038;AFFILIATE=22089&#038;AFFSRC=http://www.itfall.com/windows-7-toolbar-how-to-create-it/&#038;PATH=http%3A%2F%2Fdownload.truelaunchbar.com%2Finstall%2Fsetup.exe" title="Download True Launch Bar" rel="nofollow">Download True Launch Bar</a> </li>
<li>During installation and when you reach the &#8220;Quick Start Guide&#8221; page, click &#8220;Next&#8221;. For the purpose of this tutorial, you don&#8217;t need to apply the steps they mention to add the toolbar using that way.</li>
<li>Uncheck the checkbox for updates button and click the &#8220;Finish&#8221; button.</li>
<li>To launch the application we need, click the Windows &#8220;Start&#8221; button and then type &#8220;Standalone True Launch Bar&#8221; in the search bar until you see it under Programs, then press &#8220;Enter&#8221; to launch it.</li>
<li>When the &#8220;Standalone True Launch Bar&#8221; dialog opens, look at the &#8220;Dock&#8221; section and for the &#8220;Dock side&#8221; drop down button, select where you want it to appear, I like to put it on the right side, so I select &#8220;Right&#8221;.</li>
<li>For the &#8220;Full Row&#8221; checkbox, I prefer to leave it unchecked (and later I drag its bottom side to set its length)</li>
<li>For the &#8220;Toolbar style&#8221; section, hit the &#8220;Taskbar&#8221; radio button.</li>
<li>At the bottom left, check the &#8220;Run on system startup&#8221; checkbox, so that you can have the toolbar always load when your computer starts</li>
<li>and then click the &#8220;Ok&#8221; button</li>
</ol>
<p>You will notice that a bar appears on the top right of your desktop. It will contain links of what is in the Windows (actually Internet Explorer) Quick launch toolbar. Windows 7 by default has removed the Quick Launch from the taskbar, but with a tweak you can add that taskbar to it again. For this tutorial, we don&#8217;t need it at all.</p>
<p>Now, do the following to setup the folder of your choice as a toolbar to make it contain your links and shortcuts:</p>
<ol>
<li>Create a folder. As an example, I have created a folder in &#8220;My Documents&#8221; and named it &#8220;My Links&#8221;</li>
<li>Right click over the toolbar, and select &#8220;Switch toolbar&#8221;, then click &#8220;Manage Toolbars&#8230;&#8221;</li>
<li>With the Toolbars tab selected, click the &#8220;New&#8221; button</li>
<li>Browse to your folder. In our Case, it&#8217;s in My Documents > My Links</li>
<li>click the &#8220;OK&#8221; button. Then click &#8220;Ok&#8221; again for the &#8220;True Launch Bar settings&#8221; dialog</li>
<li>Now, right click again over the True Launch Bar toolbar, and select &#8220;Switch toolbar&#8221; then click &#8220;My Links&#8221;</li>
</ol>
<p>Few more steps to have the toolbar satisfy my needs!</p>
<p>When you right click over the &#8220;True Launch Bar&#8221; toolbar you will see a set of options, the following was done after right clicking&#8230;</p>
<ol>
<li>click &#8220;Show Text&#8221; so that we can see the actual shortcut name next to its icon.</li>
<li>&#8220;Taskbar mode&#8221; , if checked , the bar will act like a sidebar in a way that when you maxmize a window, it cannot ovelap with it. <strong>Note:</strong> You might not see this behavior directly, but when you restart the PC it will act like that. If you <em>uncheck</em> it, which I like to set, a window can be maximized to its full. And also, it will allow you to put desktop icons below the toolbar.</li>
<li>click &#8220;Always On Top&#8221; to <em>uncheck</em> it so that you can see the full window when maximized.</li>
</ol>
<p>And now, drag and drop whatever shortcuts you want to the toolbar, or go to its folder directly and add them there.</p>
<p>Final tips:</p>
<ul>
<li>You can expand the size of the toolbar by hovering the mouse cursor over its free borders (bottom for example in our case) and drag it.</li>
<li>when you finish setting it up, it&#8217;s good to lock it by right clicking over it and selecting &#8220;Lock the toolbar&#8221;</li>
</ul>
<p>That&#8217;s it. Enjoy!</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fwindows-7-toolbar-how-to-create-it%2F&amp;title=Windows%207%20Toolbar%2C%20how%20to%20create%20it"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 Windows 7 Toolbar, how to create it"  title="Windows 7 Toolbar, how to create it" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/virtualbox-windows-7-shared-folders/' rel='bookmark' title='Permanent Link: VirtualBox Windows 7 Shared Folders'>VirtualBox Windows 7 Shared Folders</a></li>
<li><a href='http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/' rel='bookmark' title='Permanent Link: Make Windows 7 taskbar buttons REALLY never combine'>Make Windows 7 taskbar buttons REALLY never combine</a></li>
<li><a href='http://www.itfall.com/windows-xp-default-administrator-account-security-hole/' rel='bookmark' title='Permanent Link: Windows XP Default Administrator Account , A Security Hole'>Windows XP Default Administrator Account , A Security Hole</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=A4YmGKXDE5M:F9wlF1gCxVc:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=A4YmGKXDE5M:F9wlF1gCxVc:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=A4YmGKXDE5M:F9wlF1gCxVc:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=A4YmGKXDE5M:F9wlF1gCxVc:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=A4YmGKXDE5M:F9wlF1gCxVc:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=A4YmGKXDE5M:F9wlF1gCxVc:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=A4YmGKXDE5M:F9wlF1gCxVc:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=A4YmGKXDE5M:F9wlF1gCxVc:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/A4YmGKXDE5M" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/windows-7-toolbar-how-to-create-it/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		<feedburner:origLink>http://www.itfall.com/windows-7-toolbar-how-to-create-it/</feedburner:origLink></item>
		<item>
		<title>VirtualBox Windows 7 Shared Folders</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/HpQ8V8m2zBg/</link>
		<comments>http://www.itfall.com/virtualbox-windows-7-shared-folders/#comments</comments>
		<pubDate>Sat, 06 Nov 2010 17:18:25 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Shared Folders]]></category>
		<category><![CDATA[VirtualBox]]></category>
		<category><![CDATA[Windows 7]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=237</guid>
		<description><![CDATA[One essential need when you use virtualization software is to have the ability to share folders between the main Operating System and the Guest OS. VirtualBox has a neat feature to do just that. However, when Windows 7 is the guest OS, you won&#8217;t find the shared folder in Network Places. When you add a shared folder using the VirtualBox interface, it has indeed been added but you just have to do one more step to be able to access it.
For completion purpose, I&#8217;ll show you how to add a folder to the shared folders using VirualBox and&#8230; <a href="http://www.itfall.com/virtualbox-windows-7-shared-folders/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/windows-xp-default-administrator-account-security-hole/' rel='bookmark' title='Permanent Link: Windows XP Default Administrator Account , A Security Hole'>Windows XP Default Administrator Account , A Security Hole</a></li>
<li><a href='http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/' rel='bookmark' title='Permanent Link: Make Windows 7 taskbar buttons REALLY never combine'>Make Windows 7 taskbar buttons REALLY never combine</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' display: block; margin-right: auto; margin-left: auto;'  src="http://www.itfall.com/wp-content/uploads/2010/11/virtualbox-logo.jpg" alt="virtualbox logo VirtualBox Windows 7 Shared Folders" title="VirtualBox Logo" width="256" height="256" class="aligncenter size-full wp-image-240" /></p>
<p>One essential need when you use virtualization software is to have the ability to share folders between the main Operating System and the Guest OS. VirtualBox has a neat feature to do just that. However, when Windows 7 is the guest OS, you won&#8217;t find the shared folder in Network Places. When you add a shared folder using the VirtualBox interface, it has indeed been added but you just have to do one more step to be able to access it.</p>
<p>For completion purpose, I&#8217;ll show you how to add a folder to the shared folders using VirualBox and the small trick to actually access it.</p>
<p><strong>Adding a VirtualBox Shared folder,</strong></p>
<ol>
<li>Select &#8220;Devices&#8221; from the the VirtualBox menu bar, then click &#8220;Shared Folders&#8230;&#8221;</li>
<li>In the &#8220;Shared Folders&#8221; dialog, click the &#8220;Add Shared Folder&#8221; button</li>
<li>For the &#8220;Folder path&#8221; click the down arrow, then select &#8220;Other&#8230;&#8221;</li>
<li>Browse to the folder you want to share, then click the &#8220;OK&#8221; button to select it. Assume that the name of the folder is &#8220;VBShare&#8221;</li>
<li>Click the &#8220;OK&#8221; button for the &#8220;Add Share&#8221; dialog</li>
<li>then click the &#8220;OK&#8221; button to close the &#8220;Shared folders&#8221; dialog</li>
</ol>
<p><strong>Accessing the Shared Folder,</strong></p>
<ol>
<li>Go to &#8220;Computer&#8221;, (Start, Computer)</li>
<li>From the toolbar, click the &#8220;Map network drive&#8221; button</li>
<li>For the &#8220;Folder&#8221; field, copy and paste &#8220;\\vboxsrv\VBShare&#8221; to it (without the quotes). Where &#8220;VBShare&#8221; is the shared folder that has been added in this article (use the name of what you have actually added)</li>
<li>Click the &#8220;Finish&#8221; button</li>
</ol>
<p>You will see that the shared folder has opened immediately, but also look to the &#8220;Computer&#8221; window and notice the New drive added under the &#8220;Network Location&#8221; section. So, now you can access the shared folder from here or you can take a shortcut of it to your desktop (the guest OS desktop) for convenient access.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fvirtualbox-windows-7-shared-folders%2F&amp;title=VirtualBox%20Windows%207%20Shared%20Folders"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 VirtualBox Windows 7 Shared Folders"  title="VirtualBox Windows 7 Shared Folders" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/windows-xp-default-administrator-account-security-hole/' rel='bookmark' title='Permanent Link: Windows XP Default Administrator Account , A Security Hole'>Windows XP Default Administrator Account , A Security Hole</a></li>
<li><a href='http://www.itfall.com/make-windows-7-taskbar-buttons-really-never-combine/' rel='bookmark' title='Permanent Link: Make Windows 7 taskbar buttons REALLY never combine'>Make Windows 7 taskbar buttons REALLY never combine</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=HpQ8V8m2zBg:E0Npq4MSC9A:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=HpQ8V8m2zBg:E0Npq4MSC9A:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=HpQ8V8m2zBg:E0Npq4MSC9A:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=HpQ8V8m2zBg:E0Npq4MSC9A:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=HpQ8V8m2zBg:E0Npq4MSC9A:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=HpQ8V8m2zBg:E0Npq4MSC9A:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=HpQ8V8m2zBg:E0Npq4MSC9A:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=HpQ8V8m2zBg:E0Npq4MSC9A:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/HpQ8V8m2zBg" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/virtualbox-windows-7-shared-folders/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		<feedburner:origLink>http://www.itfall.com/virtualbox-windows-7-shared-folders/</feedburner:origLink></item>
		<item>
		<title>VLC multiple instances</title>
		<link>http://feeds.itfall.com/~r/itfall/~3/gRdKQTPidzM/</link>
		<comments>http://www.itfall.com/vlc-multiple-instances/#comments</comments>
		<pubDate>Mon, 01 Nov 2010 07:43:13 +0000</pubDate>
		<dc:creator>Amer Kachmar</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[multiple instance]]></category>
		<category><![CDATA[multiple windows]]></category>
		<category><![CDATA[VLC]]></category>

		<guid isPermaLink="false">http://www.itfall.com/?p=200</guid>
		<description><![CDATA[Sometimes, you may need to run multiple instances of VLC so that you can view several videos at the same time or even listen to music of a certain video while viewing another. Here is quick tip on how to make VLC run and show multiple windows of videos.
<ol>
<li>From the menu, click &#8220;Tools&#8221;, then click &#8220;Preferences&#8221;</li>
<li>In the &#8220;Preferences&#8221; dialog, look to the bottom left where you will see &#8220;Show Settings&#8221; label, hit the &#8220;All&#8221; radio button</li>
<li>Select &#8220;Advanced&#8221; from the left pane</li>
<li>Look for the &#8220;Performance options&#8221; section, and uncheck &#8220;One instance when started from file&#8221;</li></ol>&#8230; <a href="http://www.itfall.com/vlc-multiple-instances/" class="read_more">[Full Article]</a>


Related posts:<ol><li><a href='http://www.itfall.com/make-vlc-repeat-video-playback/' rel='bookmark' title='Permanent Link: Make VLC repeat video playback'>Make VLC repeat video playback</a></li>
</ol>]]></description>
			<content:encoded><![CDATA[<p><img style=' display: block; margin-right: auto; margin-left: auto;'  src="http://www.itfall.com/wp-content/uploads/2010/11/cone-shortcuts.png" alt="cone shortcuts VLC multiple instances" title="Cone Shortcuts" width="200" height="225" class="aligncenter size-full wp-image-201" /><br />
Sometimes, you may need to run multiple instances of VLC so that you can view several videos at the same time or even listen to music of a certain video while viewing another. Here is quick tip on how to make VLC run and show multiple windows of videos.</p>
<ol>
<li>From the menu, click &#8220;Tools&#8221;, then click &#8220;Preferences&#8221;</li>
<li>In the &#8220;Preferences&#8221; dialog, look to the bottom left where you will see &#8220;Show Settings&#8221; label, hit the &#8220;All&#8221; radio button</li>
<li>Select &#8220;Advanced&#8221; from the left pane</li>
<li>Look for the &#8220;Performance options&#8221; section, and uncheck &#8220;One instance when started from file&#8221; checkbox</li>
<li>then click the &#8220;Save&#8221; button&#8221;</li>
</ol>
<p>With that setting, when you open another VLC file from your Windows explorer, a new instance of VLC will start and show your video in a new window.</p>
<p><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save#url=http%3A%2F%2Fwww.itfall.com%2Fvlc-multiple-instances%2F&amp;title=VLC%20multiple%20instances"><img src="http://www.itfall.com/wp-content/plugins/add-to-any/share_save_256_24.png" width="256" height="24" alt="share save 256 24 VLC multiple instances"  title="VLC multiple instances" /></a> </p>

<p>Related posts:<ol><li><a href='http://www.itfall.com/make-vlc-repeat-video-playback/' rel='bookmark' title='Permanent Link: Make VLC repeat video playback'>Make VLC repeat video playback</a></li>
</ol></p><div class="feedflare">
<a href="http://feeds.itfall.com/~ff/itfall?a=gRdKQTPidzM:1cRdfmFWk4Y:yIl2AUoC8zA"><img src="http://feeds.feedburner.com/~ff/itfall?d=yIl2AUoC8zA" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=gRdKQTPidzM:1cRdfmFWk4Y:gIN9vFwOqvQ"><img src="http://feeds.feedburner.com/~ff/itfall?i=gRdKQTPidzM:1cRdfmFWk4Y:gIN9vFwOqvQ" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=gRdKQTPidzM:1cRdfmFWk4Y:V_sGLiPBpWU"><img src="http://feeds.feedburner.com/~ff/itfall?i=gRdKQTPidzM:1cRdfmFWk4Y:V_sGLiPBpWU" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=gRdKQTPidzM:1cRdfmFWk4Y:F7zBnMyn0Lo"><img src="http://feeds.feedburner.com/~ff/itfall?i=gRdKQTPidzM:1cRdfmFWk4Y:F7zBnMyn0Lo" border="0"></img></a> <a href="http://feeds.itfall.com/~ff/itfall?a=gRdKQTPidzM:1cRdfmFWk4Y:qj6IDK7rITs"><img src="http://feeds.feedburner.com/~ff/itfall?d=qj6IDK7rITs" border="0"></img></a>
</div><img src="http://feeds.feedburner.com/~r/itfall/~4/gRdKQTPidzM" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://www.itfall.com/vlc-multiple-instances/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://www.itfall.com/vlc-multiple-instances/</feedburner:origLink></item>
	</channel>
</rss>

