<?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>MakeUseOf &#187; Cool Windows Apps &amp; Tricks</title>
	<atom:link href="http://www.makeuseof.com/service/windows/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.makeuseof.com</link>
	<description>Cool Websites, Software and Internet Tips</description>
	<lastBuildDate>Fri, 10 Feb 2012 16:31:42 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Integrate Excel Data Into A Word Document</title>
		<link>http://www.makeuseof.com/tag/integrate-excel-data-word-document/</link>
		<comments>http://www.makeuseof.com/tag/integrate-excel-data-word-document/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 19:01:15 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[How-To Articles]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[microsoft excel]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[visual basic]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98678</guid>
		<description><![CDATA[During your work week, there are probably lots of times that you find yourself copying and pasting information from Excel into Word, or the other way around. This is how people often produce written reports based on data that’s accumulated and updated in an Excel spreadsheet. In this article, I’m going to dive a little more into the background VBA scripting that allows you to actually program connections between data in Excel and Word.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/womancomputer.png?323f2c" alt="" />During your work week, there are probably lots of times that you find yourself copying and pasting information from Excel into Word, or the other way around.</p>
<p>This is how people often produce written reports based on data that&#8217;s accumulated and updated in an Excel spreadsheet. We&#8217;ve offered a lot of really cool tips and tools for Excel over the years, such as Saikat&#8217;s article on producing <a href="http://www.makeuseof.com/tag/create-attractive-professional-charts-chart-tools-ms-word-2010/">professional looking charts</a>, and Steve&#8217;s article on cool <a href="http://www.makeuseof.com/tag/excel-project-management-tracking-templates/">Excel templates for project management</a>.</p>
<p>In this article, I&#8217;m going to dive a little more into the background VBA scripting that allows you to actually program connections between data that might be stored in an Excel file and Word documents where you may be producing reports.</p>
<p>It&#8217;s actually surprisingly easy to accomplish this once you know how to add the right references, and how to lay out the syntax of the background VBA code.</p>
<h2>Integrating Data From Excel Into Your Word Document</h2>
<p>In this example, I&#8217;m going to start out with a fairly simple Excel spreadsheet. In reality, the Excel file can consist of multiple spreadsheets with lots of data, it doesn&#8217;t matter.</p>
<p>So long as you know where the data resides in the spreadsheet, you&#8217;ll be able to reach in and grab it using VBA.</p>
<p>Here&#8217;s what my sample spreadsheet looks like. It&#8217;s a list of expense totals that have been calculated throughout the entire year.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword1a.png?323f2c" alt="" width="261" height="295" /></p>
<p>Now, lets say you have a manager that would like to see a nicely formatted report that describes the expenses, grouping together like items and laying it all out in a layout that&#8217;s a little more pleasing to the eye (and easier for the big boys upstairs to understand).</p>
<p>You can do this by incorporating objects like textboxes or labels into your Word document. When you&#8217;re in Word, just click on the <em>Developer</em> menu tab, and then select &#8220;<em>Design Mode</em>&#8221; in the Controls box. Use the <em>Legacy Tools</em> dropdown icon to find where you can insert labels into your document.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword1.png?323f2c" alt="" width="490" height="515" /></p>
<p>Once you have the label placed in the document where you want it (not always an easy task), you&#8217;re ready to program the data feed. But first you&#8217;ll need to name the label so that the VBA can identify it. Right click on the label and go into <em>Properties</em>. Find the <em>&#8220;(Name)&#8221;</em> field and call it something that you&#8217;ll remember.</p>
<p>Now, add a Command Button from the same Legacy Tools dropdown list, place it in your document, and double click it to open up the VBA editor. When you get your code working later, you can modify it so that the code runs on the Document Open() event. You&#8217;ll see that in the object dropdown boxes in the editor window.</p>
<p>To get started connecting Word to Excel, you&#8217;ll need to reference Excel. Click on <em>Tools</em>, and then <em>References</em>. Scroll down the list until you see the &#8220;<em>Microsoft Excel 12.0 Object Library</em>&#8221; and select it.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword4.png?323f2c" alt="" width="522" height="471" /></p>
<p>Once you&#8217;ve done this, the rest is just a matter of writing a ridiculously simple VBA script to pull in data from an Excel spreadsheet and automatically update the label caption with the data. Here&#8217;s how that works.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #E56717; font-weight: bold;">Private</span> <span style="color: #E56717; font-weight: bold;">Sub</span> CommandButton1_Click()
<span style="color: #151B8D; font-weight: bold;">Dim</span> objExcel <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #E56717; font-weight: bold;">New</span> Excel.Application
<span style="color: #151B8D; font-weight: bold;">Dim</span> exWb <span style="color: #151B8D; font-weight: bold;">As</span> Excel.Workbook
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = objExcel.Workbooks.<span style="color: #151B8D; font-weight: bold;">Open</span>(<span style="color: #800000;">&quot;c:\temp\expenses.xls&quot;</span>)
&nbsp;
ThisDocument.yrTotal.Caption = exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(12, 2)
&nbsp;
exWb.<span style="color: #8D38C9; font-weight: bold;">Close</span>
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = <span style="color: #00C2FF; font-weight: bold;">Nothing</span>
&nbsp;
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #E56717; font-weight: bold;">Sub</span></pre></div></div>

<p>See how that works? The &#8220;exWb&#8221; Excel application object opens the Excel file at the path you provide it, and it&#8217;ll go right into the specific sheet and cell number, extract the data, and place it into the Caption property of the label that you named &#8220;<em>yrTotal</em>&#8220;.</p>
<p>Here&#8217;s the VBA macro in action.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword5.png?323f2c" alt="" width="399" height="104" /></p>
<p>The hard part with dealing with labels in Word is that it&#8217;s sometimes hard to align it at the end of a sentence or alongside any other text.</p>
<p>One way of overcoming that is actually incorporating some of the text alongside the data in the VBA code itself.  As you can see here, I&#8217;ve put the static text right into the Caption when I create the label itself.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword6.png?323f2c" alt="" width="336" height="212" /></p>
<p>Now, all you have to do is include that text when you update the label with your VBA script, and just append the data from the Excel file to the end of that text. Here&#8217;s what that kind of code would look like.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #151B8D; font-weight: bold;">Dim</span> objExcel <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #E56717; font-weight: bold;">New</span> Excel.Application
<span style="color: #151B8D; font-weight: bold;">Dim</span> exWb <span style="color: #151B8D; font-weight: bold;">As</span> Excel.Workbook
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = objExcel.Workbooks.<span style="color: #151B8D; font-weight: bold;">Open</span>(<span style="color: #800000;">&quot;c:\temp\expenses.xls&quot;</span>)
&nbsp;
ThisDocument.yrTotal.Caption = exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(12, 2)
ThisDocument.totHotels.Caption = <span style="color: #800000;">&quot;Hotels: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(5, 2)
ThisDocument.TotDining.Caption = <span style="color: #800000;">&quot;Dining Out: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(2, 2)
ThisDocument.totTolls.Caption = <span style="color: #800000;">&quot;Tolls: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(3, 2)
ThisDocument.totFuel.Caption = <span style="color: #800000;">&quot;Fuel: &quot;</span> &amp;amp; exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(10, 2)
&nbsp;
exWb.<span style="color: #8D38C9; font-weight: bold;">Close</span>
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> exWb = <span style="color: #00C2FF; font-weight: bold;">Nothing</span></pre></div></div>

<p>You can use the string concatenation &#8220;&amp;&#8221; symbol to place connect the static text with the data extracted from the Excel sheet. Here&#8217;s what the final results look like in the updated Word document.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/exceltoword7.png?323f2c" alt="" width="542" height="328" /></p>
<p>Again, if you don&#8217;t want to have a big, ugly grey command button in your word document, just have the data-update script run on Document.Open(), and it&#8217;ll all take place behind the scenes.</p>
<p>In fact, in many cases you could create the initial document once, and then you&#8217;ll never have to create it again. All you&#8217;ll have to do is open it, and all of the labels will automatically update for you with the data from the updated Excel file. All you have to do is click to Print, and submit the report to your manager. A 30 minute report just turned into a 1 minute printout!</p>
<p>Can you think of any other cool uses for this data-integration technique using VBA? Share some of your own ideas and thoughts in the comments section below.</p>
<p><small><a href="http://image.shutterstock.com/display_pic_with_logo/59253/59253,1264063933,1/stock-photo-business-woman-in-office-using-desktop-computer-44970433.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/integrate-excel-data-word-document/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Soup Up The Notepad++ Text Editor With Plugins From The Notepad Plus Repository [Windows]</title>
		<link>http://www.makeuseof.com/tag/soup-notepad-text-editor-plugins-repository-windows/</link>
		<comments>http://www.makeuseof.com/tag/soup-notepad-text-editor-plugins-repository-windows/#comments</comments>
		<pubDate>Thu, 09 Feb 2012 00:31:37 +0000</pubDate>
		<dc:creator>Tim Brookes</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[notepad]]></category>
		<category><![CDATA[programmer tools]]></category>
		<category><![CDATA[text editors]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98798</guid>
		<description><![CDATA[Notepad++ is a worthy replacement for Windows’ in-built and much loved text editor, and comes highly recommended if you’re a programmer, web designer or simply someone who finds themselves in need of a powerful plain text editor. Not only is Notepad++ free under the GPL licence but it is also possible to extend its functionality with plugins.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/notepad_plus_intro.png?323f2c" alt="" />Notepad++ is a worthy replacement for Windows’ in-built and much loved text editor, and comes highly recommended if you’re a programmer, web designer or simply someone who finds themselves in need of a powerful plain text editor.</p>
<p>Not only is Notepad++ free under the GPL licence but it is also possible to extend its functionality with plugins. Today I’ll be taking a look at the Notepad++ plugins repository which contains a few extra bells and whistles to take your text editor to the next level.</p>
<h2>Notepad++ &amp; Plugins</h2>
<p>Notepad++ has already seen a few mentions here at MakeUseOf and has earned its place on our <a href="http://www.makeuseof.com/pages/best-windows-software#documents">Best Of Windows Software list</a>. We’ve also previously included it in our Windows <a href="http://www.makeuseof.com/tag/3-windows-text-editors-for-programmers/">text editor roundup</a>, used it to <a href="http://www.makeuseof.com/tag/how-to-find-and-replace-words-in-multiple-files/">find and replace words in multiple files</a> and shown you how to <a href="http://www.makeuseof.com/tag/how-to-change-the-default-webpage-source-editor-of-browsers/">switch out your default HTML source editor</a> in favour of Notepad++. If you’ve not yet got it, head on over to the <a href="http://notepad-plus-plus.org/">project homepage</a> and download for free.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/notepad_plus_plus1.png?323f2c" alt="" width="587" height="433" /></p>
<p>Luckily there is a healthy collection of third-party plugins, some of which have made their way into the latest Notepad++ release after proving their worth. The program has its very own plugin manager (which is ironically a plugin itself) from which to janitor your add-ons and updates.</p>
<p>Choosing the right plugins depends entirely on what you use Notepad++ for, and there are a good number to trawl through. Installing plugins used to involve downloading archives and extracting to the ‘plugins’ directory, and while you can still do this it’s much easier to choose <em>Plugins</em> from the main taskbar then <em>Plugin Manager</em> to bring up the repository.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/notepad_plus_pluguinmanager1.png?323f2c" alt="" width="344" height="361" /></p>
<p>Once the list has refreshed you will be presented with an array of available downloads. For a better idea of what each plugin does simply click and read the description. Installing the add-ons is easy &#8211; check the box next to the plugin and click <em>Install</em>. Multiple plugins can be installed this way which is great because Notepad++ requires a restart before they show up.<strong></strong></p>
<p><strong></strong>If you do want to use the traditional download-and-extract method you’ll need to find the plugins first. Luckily there are a good number located at the <a href="http://sourceforge.net/projects/npp-plugins/?source=directory">npp-plugins SourceForge project page</a>.</p>
<h2>Recommended Plugins</h2>
<p>Once again there’s no one-size-fits-all here, and each of you will find your own preferred plugins based on primary usage. Saying that, the following plugins do have somewhat of a broad appeal:</p>
<p><strong>Explorer</strong> &#8211; A simple file explorer that sits on the left-hand side of your screen. Double click and files will open, just like that.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/notepad_explorer_plugin.png?323f2c" alt="" width="587" height="433" /></p>
<p><strong>Compare</strong> &#8211; A surprisingly useful plugin for comparing two files, side-by-side.</p>
<p><strong>AutoSave</strong> - Always forgetting to save on time? Let AutoSave save for you! Can be configured to use a timer or when Notepad++ loses focus/is minimized.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/autosave.png?323f2c" alt="" width="358" height="495" /></p>
<p><strong>Location Navigate</strong> &#8211; Quickly jump backwards and forwards to parts of the document that you have modified, rather than trawling through all the stuff in between.</p>
<p><strong>Lorem Ipsum</strong> &#8211; One for the web designers, a simple <a href="http://www.makeuseof.com/tag/lorem-ipsum-case-wondering/">Lorem Ipsum</a> script for instant Latin copy text.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/loremipsum.png?323f2c" alt="" width="587" height="433" /></p>
<p><strong>MultiClipboard</strong> &#8211; Provides access to the last 10 copied items. Ctrl+V pastes the last copied text whereas Ctrl+Shift+V lets you choose from a list of 10 memorised copies.</p>
<p><strong>XBrackets Lite</strong> &#8211; Forgetting just one bracket can ruin your whole afternoon &#8211; never again with XBrackets Lite!</p>
<p><strong>Falling Bricks</strong> &#8211; Who said plugins have to be useful? Here’s a very simple <a href="http://www.makeuseof.com/tags/tetris/">Tetris</a> clone to distract you when the time is right.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/notepad_falling_bricks.png?323f2c" alt="" width="365" height="279" /></p>
<h2>Using The Plugins</h2>
<p>Once you’ve selected the plugins you’ll want, hit <em>Install</em> and let them download. You will be notified that a restart is required, agree and Notepad++ will appear once again with your bounty of add-ons enabled.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/downloading_plugins.png?323f2c" alt="" width="454" height="239" /></p>
<p>To use the plugins, visit the <em>Plugins</em> menu in the main taskbar and select from there. Some will have multiple functions and options and others will be very basic “enable or disable” affairs. To remove plugins (or check for updates) launch the <em>Plugin Manager</em> again, choose the <em>Installed</em> tab, select a plugin and click <em>Remove</em>.</p>
<h2>Conclusion</h2>
<p>Hopefully you’ll find exactly what you’re looking for in this excellent plugins respository. It’s a fantastic way of turbo-charging Notepad++ to be even more useful, and the right add-ons can really help tailor the application to your needs.</p>
<p>If you have any personal favourites, plugins you can’t live without or if you prefer a different text editor entirely then let us know in the comments below this article.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/soup-notepad-text-editor-plugins-repository-windows/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>3 Advanced Tips &amp; Tricks For Using Windows Explorer</title>
		<link>http://www.makeuseof.com/tag/3-advanced-tips-tricks-windows-explorer/</link>
		<comments>http://www.makeuseof.com/tag/3-advanced-tips-tricks-windows-explorer/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 23:31:07 +0000</pubDate>
		<dc:creator>Tina Sieber</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[tweaks]]></category>
		<category><![CDATA[Windows 7]]></category>
		<category><![CDATA[windows explorer]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98834</guid>
		<description><![CDATA[Windows Explorer is the default Windows file manager. Last week I introduced you to 3 easy ways to improve Windows 7 Explorer by tweaking features and using it to its full potential. In this article, I will show you a small hack and share some tips to get the most out of Windows Explorer.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Windows-7-Logo-blue-background.png?323f2c" alt="tips for windows explorer" />Windows Explorer is the default Windows file manager. Last week I introduced you to <a href="http://www.makeuseof.com/tag/3-easy-ways-improve-windows-7-explorer/">3 easy ways to improve Windows 7 Explorer</a> by tweaking features and using it to its full potential. In this article, I will show you a small hack and share some tips to get the most out of Windows Explorer.</p>
<h2>Change Default Folder (Option 1)</h2>
<p>In Windows 7, the default location when opening Windows Explorer is the Libraries folder. Here is a simple trick to set a custom location:</p>
<ol>
<li>Right-click on your desktop and select &gt; <em>New</em> &gt; <em>Shortcut</em>.</li>
<li>Under <em>Type the location of the item</em> enter: explorer.exe /root,path</li>
<li>Then click <em>Next</em>, enter a name for your shortcut, and click <em>Finish</em>.</li>
</ol>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Create-Shortcut.png?323f2c" alt="tips for windows explorer" border="0" /></p>
<p>Note that you need to give the full path to the desired folder. If you wish to point to <em>Computer</em>, paste the following location: <em>explorer.exe /root,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}</em></p>
<p>Once you have a working shortcut, you can pin it to your taskbar, move it to the QuickLaunch bar or use it from your desktop.</p>
<h2>Change Default Folder (Option 2)</h2>
<p>To simply change the default Windows Explorer startup folder anywhere, do this:</p>
<ol>
<li>Right-click a folder or the Windows Explorer icon in the taskbar to bring up the jump-list.</li>
<li>In the jump-list, right-click on <em>Windows Explorer</em> and select <em>Properties</em>.</li>
<li>In the <em>Shortcut</em> tab change the <em>Target</em> to the desired location, as per the list below.</li>
</ol>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Windows-Explorer-Properties.png?323f2c" alt="windows explorer tips" border="0" /></p>
<p>Alternatively, you can also change the properties of any other shortcut you are using to open Windows Explorer.</p>
<p>Potential locations:</p>
<ul>
<li>Documents folder: <em>%SystemRoot%\explorer.exe /n,::{450D8FBA-AD25-11D0-98A8-0800361B1103}</em></li>
<li>Computer: <em>%SystemRoot%\explorer.exe /E,::{20D04FE0-3AEA-1069-A2D8-08002B30309D}</em></li>
<li>Recycle Bin: <em>%SystemRoot%\explorer.exe /E,::{645FF040-5081-101B-9F08-00AA002F954E}</em></li>
<li>Default (Libraries): <em>%windir%\explorer.exe</em></li>
</ul>
<p>For information on how to find out the GUID (Globally Unique Identifiers) for your desired location, check out the following article on How-To Geek: <a title="Enable the Secret How-To Geek Mode in Windows 7" href="http://www.howtogeek.com/howto/8711/stupid-geek-tricks-enable-the-secret-how-to-geek-mode-in-windows/">Enable the Secret &#8220;How-To Geek&#8221; Mode in Windows 7</a></p>
<h2>Navigate Windows Explorer With Keyboard Shortcuts</h2>
<p>Nothing is more easy and geeky than nifty little keyboard shortcuts. Here are some relevant key combinations to navigate through the Windows Explorer folder structure:</p>
<ul>
<li>[Windows] + [E] = launch Windows Explorer</li>
<li>[ALT] + [RIGHT] = go forward</li>
<li>[ALT] + [LEFT] = go back</li>
<li>[ENTER] = open selected folder</li>
<li>[ALT] + [UP] = move to parent directory</li>
<li>[ALT] + [TAB] or [F6] = move between focus areas</li>
<li>[ALT] + [D] = focus on address bar and select current path</li>
<li>[F4] = open address bar drop-down menu</li>
<li>[F3] = focus on search bar and drop down search filter options</li>
<li>[ALT] + [P] = open preview pane</li>
<li>[ALT] + [ENTER] = view properties of selected file</li>
<li>[F2] = change file name of selected file</li>
<li>[F10] = jump to file menu</li>
<li>[F11] = switch to full screen mode and back</li>
<li>[CTRL] + mousewheel = change icon size (works almost everywhere, useful in browser)</li>
</ul>
<h2>Gently Terminate &amp; Restart Windows Explorer</h2>
<p>When an application hangs and won&#8217;t let you close it, or when Windows Explorer crashes, or to see the effects of editing a current user registry entry, what do you typically do? You either log off and back in or you reboot? However, closing and restarting Windows Explorer has the same effect and is much faster.</p>
<p>Here is a safe way to terminate and then restart Windows Explorer in Windows Vista and Windows 7:</p>
<ol>
<li>Go to <em>Start</em>.</li>
<li>Click <em>[CTRL] + [SHIFT]</em> while you right-click an empty space of the Start menu.</li>
<li>Select <em>Exit Explorer</em> from the menu that appears.</li>
</ol>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Windows-Start-Menu-Exit-Explorer-Menu.png?323f2c" alt="windows explorer tips" border="0" /></p>
<p>This procedure will gently terminate Windows Explorer, meaning all your folders will close, your desktop will be empty, and the taskbar will be gone. Your system, however, is still running.</p>
<p>To bring Windows Explorer back, do the following:</p>
<ol>
<li>Use the keyboard combination <em>[CTRL] + [SHIFT] + [ESC]</em> to launch the <em>Task Manager</em>.</li>
<li>Go to &gt; <em>File</em> &gt; <em>New Task (Run&#8230;)</em></li>
<li>Type <em>explorer.exe</em> in the Create New Task text field and click <em>OK</em>.</li>
</ol>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Run-Windows-Explorer-from-Task-Manager.png?323f2c" alt="tips for windows explorer" border="0" /></p>
<p>Et voilà, Windows Explorer is back and fresh as rebooted.</p>
<p>Do you know of any other tips and tricks everyone should know about? Please share with us in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/3-advanced-tips-tricks-windows-explorer/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>How To Send Emails From An Excel Spreadsheet Using VBA Scripts</title>
		<link>http://www.makeuseof.com/tag/send-emails-excel-vba/</link>
		<comments>http://www.makeuseof.com/tag/send-emails-excel-vba/#comments</comments>
		<pubDate>Wed, 08 Feb 2012 22:31:02 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email tips]]></category>
		<category><![CDATA[microsoft excel]]></category>
		<category><![CDATA[scripts]]></category>
		<category><![CDATA[visual basic]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98665</guid>
		<description><![CDATA[In the past, I’ve used email a whole lot in my batch jobs and other automated scripts, just like I’ve described in past articles. These are great for those times when you have a script that’s monitoring the health of a computer or the status of a specific process, but what if you want to automate sending emails from within Office products like Word or Excel?]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/emaillaptop.png?323f2c" alt="email from excel" />Using emails as part of any program is a nice way to automate important tasks, and it also significantly improves the value and functionality of any program or script.</p>
<p>In the past, I&#8217;ve used email a whole lot in my batch jobs and other automated scripts, just like I&#8217;ve described in past articles here on using tools like <a href="http://www.makeuseof.com/tag/send-automated-emails-save-time-sendemail-windows-task-scheduler/">Sendmail</a> or <a href="http://www.makeuseof.com/tag/easily-quickly-send-command-line-emails-blat/">Blat</a> to issue emails straight from the command line, or from within a command line script.</p>
<p>These are great for those times when you have a script that&#8217;s monitoring the health of a computer or the status of a specific process, but what if you want to automate sending emails from within Office products like Word or Excel?</p>
<p>There are a lot of reasons why you might want to do so. Maybe you have staff that update documents or spreadsheets on a weekly basis, and you&#8217;d like to receive an email notification of when those updates take place, and even a report of the data from within those sheets. There are a few techniques you can use to program automated emails from within Excel, but my favorite remains CDO.</p>
<h2>Sending Emails From Within Excel</h2>
<p>You&#8217;re probably thinking that scripting outgoing email into an Excel VBA script is going to be painfully complicated. Well, that&#8217;s not the case at all.</p>
<p>CDO is a messaging component used in Windows for a few generations of the OS. It used to be called CDONTS, and then with the advent of Windows 2000 and XP, it was replaced with &#8220;CDO for Windows 2000&#8243;. This component is already included in your VBA installation within Word or Excel and it&#8217;s ready for use.</p>
<p>Using the component makes sending emails from within Windows products with VBA extremely easy. In this example, I&#8217;m going to use the CDO component in Excel to send out an email that will deliver the results from a specific Excel cell.</p>
<p>The first step is to go to the &#8220;<em>Developer</em>&#8221; menu tab, click on &#8220;<em>Insert</em>&#8221; in the Controls box, and then select a command button. Draw it into the sheet and then create a new macro for it.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/outlookvba1.png?323f2c" alt="email from excel" width="525" height="395" /></p>
<p style="text-align: left;">When Excel opens up the VBA editor, you&#8217;re going to need to add the reference to the CDO library. You can access this in the Tools menu, and then scroll down the list until you find &#8220;<em>Microsoft CDO for Windows 2000 Library</em>&#8220;. Select the checkbox and click OK.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/outlookvba2.png?323f2c" alt="send email from excel" width="553" height="504" /></p>
<p style="text-align: left;">Now you&#8217;re ready to use CDO to issue emails from inside Excel. To do this, you first need ot create the mail objects and set up all of the fields that will be required for sending the email. Keep in mind that while many of the fields are optional, the From and To fields are required.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #151B8D; font-weight: bold;">Dim</span> CDO_Mail <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Object</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> CDO_Config <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Object</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> SMTP_Config <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Variant</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> strSubject <span style="color: #151B8D; font-weight: bold;">as</span> <span style="color: #F660AB; font-weight: bold;">String</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> strFrom <span style="color: #151B8D; font-weight: bold;">as</span> <span style="color: #F660AB; font-weight: bold;">String</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> strTo <span style="color: #151B8D; font-weight: bold;">as</span> <span style="color: #F660AB; font-weight: bold;">String</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> strCc <span style="color: #151B8D; font-weight: bold;">as</span> <span style="color: #F660AB; font-weight: bold;">String</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> strBcc <span style="color: #151B8D; font-weight: bold;">as</span> <span style="color: #F660AB; font-weight: bold;">String</span>
<span style="color: #151B8D; font-weight: bold;">Dim</span> strBody <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">String</span>
&nbsp;
strSubject = <span style="color: #800000;">&quot;Results from Excel Spreadsheet&quot;</span>
strFrom = <span style="color: #800000;">&quot;ryxxxxxx@xxxxxcast.net&quot;</span>
strTo = <span style="color: #800000;">&quot;rdxxxxxx@gmail.com&quot;</span>
strCc = <span style="color: #800000;">&quot;&quot;</span>
strBcc = <span style="color: #800000;">&quot;&quot;</span>
strBody = <span style="color: #800000;">&quot;The total results for this quarter are: &quot;</span> &amp;amp; Str(Sheet1.Cells(2, 1))</pre></div></div>

<p>The cool thing about this is that you an build up any string you want to customize a full email message and assign it to the strBody variable. Piece together components of the message by using the &#8220;&amp;&#8221; string to insert data from any of the Excel sheets right into the email message, just like I&#8217;ve shown above.</p>
<p>The next section of code is where you will configure CDO to use any external SMTP server that you want to use. In this case I don&#8217;t need to use SSL because my SMTP server doesn&#8217;t require it. CDO is capable of SSL, but that&#8217;s outside the scope of this article. If you need to use SSL, I highly recommend Paul Sadowski&#8217;s <a href="http://www.paulsadowski.com/wsh/cdo.htm">awesome writeup</a> on using CDO.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #151B8D; font-weight: bold;">Set</span> CDO_Mail = <span style="color: #E56717; font-weight: bold;">CreateObject</span>(<span style="color: #800000;">&quot;CDO.Message&quot;</span>)
<span style="color: #151B8D; font-weight: bold;">On</span> <span style="color: #151B8D; font-weight: bold;">Error</span> <span style="color: #8D38C9; font-weight: bold;">GoTo</span> Error_Handling
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> CDO_Config = <span style="color: #E56717; font-weight: bold;">CreateObject</span>(<span style="color: #800000;">&quot;CDO.Configuration&quot;</span>)
CDO_Config.Load -1
&nbsp;
<span style="color: #151B8D; font-weight: bold;">Set</span> SMTP_Config = CDO_Config.Fields
&nbsp;
<span style="color: #8D38C9; font-weight: bold;">With</span> SMTP_Config
    .Item(<span style="color: #800000;">&quot;http://schemas.microsoft.com/cdo/configuration/sendusing&quot;</span>) = 2
    .Item(<span style="color: #800000;">&quot;http://schemas.microsoft.com/cdo/configuration/smtpserver&quot;</span>) = <span style="color: #800000;">&quot;smtp.metrocast.net&quot;</span>
    .Item(<span style="color: #800000;">&quot;http://schemas.microsoft.com/cdo/configuration/smtpserverport&quot;</span>) = 25
    .Update
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">With</span>
&nbsp;
<span style="color: #8D38C9; font-weight: bold;">With</span> CDO_Mail
    <span style="color: #151B8D; font-weight: bold;">Set</span> .Configuration = CDO_Config
<span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">With</span></pre></div></div>

<p>Now that you&#8217;ve configured the connection to the SMTP server for sending the email, all you have to do is fill in the appropriate fields for the CDO_Mail object, and issue the Send command. This is how you do that.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;">CDO_Mail.Subject = strSubject
CDO_Mail.From = strFrom
CDO_Mail.<span style="color: #8D38C9; font-weight: bold;">To</span> = strTo
CDO_Mail.TextBody = strBody
CDO_Mail.CC = strCc
CDO_Mail.BCC = strBcc
CDO_Mail.Send
&nbsp;
Error_Handling:
<span style="color: #8D38C9; font-weight: bold;">If</span> Err.Description &amp;lt;&amp;gt; <span style="color: #800000;">&quot;&quot;</span> <span style="color: #8D38C9; font-weight: bold;">Then</span> MsgBox Err.Description</pre></div></div>

<p>So there you have it. There won&#8217;t be any pop-up boxes or security alert messages, which can happen when you resort to using the Outlook mail object. CDO simply puts together the email and utilizes your SMTP server connection details to fire off the message. It&#8217;s probably the easiest way I know to incorporate email into Word or Excel VBA scripts.</p>
<p>Here&#8217;s what the message looked like that I received in my inbox.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/outlookvba4.png?323f2c" alt="email from excel" width="346" height="98" /></p>
<p>No hassle &#8211; just the data straight from within the Excel sheet delivered right to my email account. If you&#8217;re creative with how you put together the body string variable with all sorts of data from your Excel sheet, you can just imagine the cool automated email reports that you could put together. And if you don&#8217;t want to use a command button, just have the script run on the sheet or application close event.</p>
<p>Can you think up any cool uses for CDO in your own Excel, Access, or Word projects? Share your thoughts and ideas in the comments section below.</p>
<p><small><a href="http://image.shutterstock.com/display_pic_with_logo/285868/285868,1280383213,6/stock-photo-laptop-and-mail-done-in-d-isolated-58049572.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/send-emails-excel-vba/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>5 Distracting Desktop Notifications &amp; How To Turn Them Off [Windows]</title>
		<link>http://www.makeuseof.com/tag/5-distracting-desktop-notifications-turn-windows/</link>
		<comments>http://www.makeuseof.com/tag/5-distracting-desktop-notifications-turn-windows/#comments</comments>
		<pubDate>Tue, 07 Feb 2012 17:01:39 +0000</pubDate>
		<dc:creator>Tina Sieber</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[annoyances]]></category>
		<category><![CDATA[desktop enhancements]]></category>
		<category><![CDATA[notifications]]></category>
		<category><![CDATA[tweaks]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98746</guid>
		<description><![CDATA[When you are working on a computer, it takes a fair bit of will power to resist the attempt to multitask. But even if you manage to restrain yourself, many programs manage to throw in distracting notifications that will divert your attention. Especially after setting up a new computer or re-installing, it can be a pain to track down the common offenders and turn off annoying focus killers.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Idea-Bulb.png?323f2c" alt="turn off desktop notifications" border="0" />When you are working on a computer, it takes a fair bit of will power to <a title="3 Ways To Stop Multitasking &amp; Stay Focused To Be More Efficient &amp; Productive [Windows]" href="http://www.makeuseof.com/tag/stop-multitasking-stay-focused-efficient-productive-windows/">resist the attempt to multitask</a>. But even if you manage to restrain yourself, many programs manage to throw in distracting notifications that will divert your attention. Especially after setting up a new computer or re-installing, it can be a pain to track down the common offenders and turn off annoying focus killers.</p>
<p>In this article I will list the most common programs, what type of notifications they put out, and how you can disable them.</p>
<h2>Windows System Tray / Notification Area</h2>
<p>Generally, you can individually turn off desktop notifications for any programs or services represented in the Windows system tray. Right-click the task-bar and select <em>Properties</em>. Under <em>Notification area</em> click the <em>Customize&#8230;</em> button. This will open the respective Control Panel window with a list of icons for any program or service that was ever registered in the notification area.</p>
<p>To turn off the notifications for a specific item, find it in the list, and select <em>Hide icon and notifications</em> from the drop-down menu to its right.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Turn-Off-Windows-System-Tray-Notifications.png?323f2c" alt="turn off desktop notifications" border="0" /></p>
<h2>Skype</h2>
<p>As far as I&#8217;m concerned, Skype is one of the biggest offenders when it comes to annoying notifications. Whenever someone comes online or goes offline, a little message pops up to share the event with you. Haven&#8217;t we all seen this obtrusive little notification jump on top of full screen videos or public presentations?</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Skype-User-Online-Notification.png?323f2c" alt="disable desktop notifications" border="0" /></p>
<p>To manage your Skype notifications, click through to &gt; <em>Tools</em> &gt; <em>Options&#8230;</em> and switch to the <em>Notifications</em> side tab. Under <em>Notification settings</em> you will find a list of Windows tray notifications which you can check or uncheck.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Turn-Off-Skype-Notifications.png?323f2c" alt="disable desktop notifications" border="0" /></p>
<p>While you are at it, you can also jump to the <em>Alerts &amp; messages</em> section and turn off the unwelcome <em>Help and Skype tips</em> as well as <em>Promotions</em>.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Turn-Off-Skype-Help-and-Tips-and-Promotions.png?323f2c" alt="disable desktop notifications" border="0" /></p>
<h2>Thunderbird</h2>
<p>Thunderbird is a great desktop email client, but when it comes to notifications, there is room for improvement. It has been a long time since I started from scratch with it, but as far as I remember, the default setting is to show a system tray alert and play a sound.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Thunderbird-Email-Notification.png?323f2c" alt="turn off desktop notifications" border="0" /></p>
<p>To stop this impertinence, go to &gt; <em>Tools</em> &gt; <em>Options&#8230;</em> In the <em>General</em> tab under <em>When new message arrives</em> you can uncheck the boxes to <em>Show an alert</em> and <em>Play a sound</em>. If you were a fan of incoming email notifications, you could also customize them to include the subject and sender or play a favorite sound. But seriously, who wants that?</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Thunderbird-Turn-Off-New-Message-Notification.png?323f2c" alt="turn off desktop notifications" border="0" /></p>
<h2>Google Talk</h2>
<p>When I recently re-installed my computer, I suddenly received all these new email messages and had no idea where they came from, especially since they were turned off in Thunderbird. Finally it dawned on me, that the source was Google Talk.</p>
<p>As with the previous programs, you can easily turn these notifications off if you know where to find them. Click <em>Settings</em> in the top right of Google Talk, then navigate to the <em>Notifications</em> tab and uncheck <em>Show notification</em> for <em>New email</em>.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Google-Talk-Notifications.png?323f2c" alt="turn off desktop notifications" border="0" /></p>
<h2>Windows Balloon Tips</h2>
<p>Windows is set up to deal with DAUs (dumbest assumable users). Consequently, it likes to pop up messages about things the average user either doesn&#8217;t care about or already knows. These unhelpful notifications are called balloon tips.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Windows-7-Balloon-Tip.png?323f2c" alt="windows 7 balloon tip" border="0" /></p>
<p>To disable balloon tips, go to the <em>Start</em> menu and search for <em>Group Policy</em>. Open the result <em>Edit group policy</em>, then navigate to &gt; <em>User Configuration</em> &gt; <em>Administrative Tasks</em> &gt; <em>Start Menu and Taskbar</em>. In the list find the entry <em>Turn off all balloon notifications</em> and double-click it.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Windows-7-Edit-Group-Policy.png?323f2c" alt="edit group policy in windows 7" border="0" /></p>
<p>&#8220;<em>If you enable this settings, no notification balloons will be shown to the user.</em>&#8221; Hence, to <span style="text-decoration: underline;">disable the balloon notifications</span>, you have to select <em>Enabled</em> for this setting. To enable the balloon tips, select <em>Disabled</em> or set it to <em>Not Configured</em>.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/Turn-Off-Windows-7-Balloon-Notifications.png?323f2c" alt="turn off desktop notifications" border="0" /></p>
<p>You can also disable or enable balloon tips with a <a title="Disable All Notification Balloons in Windows 7 or Vista" href="http://www.howtogeek.com/howto/windows-vista/disable-all-notification-balloons-in-windows-vista/">registry hack</a>. A registry fix for either enabling or disabling the tips, which will save you messing around with the registry itself, is available from <a title="Windows 7 - Notifications - Enable or Disable Message Balloons" href="http://www.sevenforums.com/tutorials/11442-notifications-enable-disable-message-balloons.html">SevenForums</a>.</p>
<p>Do you frequently have to write essays or do you enjoy undisturbed creative writing? Check out OmmWriter, which I have reviewed here &#8211; <a title="Meet Your Writing Deadlines In A Distraction-Free Writing Environment With OmmWriter" href="http://www.makeuseof.com/tag/meet-writing-deadlines-distraction-free-writing-environment-ommwriter/">Meet Your Writing Deadlines In A Distraction-Free Writing Environment With OmmWriter</a>.</p>
<p>What do you find most distracting when you work on your computer and are there any notifications you have struggled to get rid of?</p>
<p><small>Image credits: <a href="http://www.shutterstock.com/pic.mhtml?id=80496937" rel="nofollow">Kitch Bain</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/5-distracting-desktop-notifications-turn-windows/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Enjoy Apple&#8217;s Launchpad On Your Windows Machine With WinLaunch</title>
		<link>http://www.makeuseof.com/tag/enjoy-apples-launchpad-windows-machine-winlaunch/</link>
		<comments>http://www.makeuseof.com/tag/enjoy-apples-launchpad-windows-machine-winlaunch/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 20:00:03 +0000</pubDate>
		<dc:creator>Yaara Lancet</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[application launchers]]></category>
		<category><![CDATA[desktop enhancements]]></category>
		<category><![CDATA[launchers]]></category>
		<category><![CDATA[tweaks]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98628</guid>
		<description><![CDATA[I have a confession to make. I haven’t used a Mac since the 90s. It’s true. Growing up in an Apple-crazed home, I had a mouse connected to my computer when all my friends still used DOS. But those days are long gone, and for the past 15 years I’ve barely touched an Apple machine [...]]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/EEE.png?323f2c" alt="apple launchpad" />I have a confession to make. I haven’t used a Mac since the 90s. It’s true. Growing up in an Apple-crazed home, I had a mouse connected to my computer when all my friends still used DOS. But those days are long gone, and for the past 15 years I’ve barely touched an Apple machine that wasn’t an iPhone, iPod or iPad.</p>
<p>Despite this, I have heard about Launchpad. Launchpad is a Mac OSX feature which makes launching applications easier and (of course) more stylish. I know it’s pretty darn easy to launch applications on my iPad, and I’ve been searching for something similar for my Windows machine.</p>
<p>If you’re also looking to tweak your Windows’ look and feel and make it somewhat more Mac-ish, you’re going to love WinLaunch.</p>
<h2>Getting Started With WinLaunch</h2>
<p>WinLaunch is an application launcher for Windows XP, Vista and 7, which aims to look like Apple’s Launchpad. To start, <a href="http://mrc0rrupted.deviantart.com/art/WinLaunch-0-4-Mac-OSX-Lion-Launchpad-for-windows-277763668?">download WinLaunch</a>, open the zip file and extract the suitable folder for your operating system (x86 or x64). When you’re done, launch WinLaunch.exe.</p>
<p>As you will see, nothing much happens. The first time you run it, you’ll get a “heads up” window telling you about known issues with WinLaunch, which is still in beta. After that, there’s nothing. To start WinLaunch for the first time, hit Shift+Tab.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch.png?323f2c" alt="apple launchpad" width="511" height="374"/></p>
<p>The screen will blur and this message will appear. WinLaunch doesn’t crawl your system for your applications; you need to add those manually. Hit ‘F’ and start dragging in applications.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch-5.png?323f2c" alt="launchpad for apple" width="588" height="468" border="0" /></p>
<p>As basics go, this is pretty much it. You can drag as many applications as you want, and when the screen is full, WinLaunch will create more pages. You can flip through these pages by left clicking your mouse and sliding it on the screen, much like you would with a touch screen.</p>
<p>Now let’s see how what else you can do with WinLaunch.</p>
<h2>Creating Folders And Renaming</h2>
<p>WinLaunch allows you to create folders in a way that’s very similar to what you get on Apple’s machines. After dragging in your applications, click on an app with your mouse and drag it over another application. This will create a folder, which you can continue to add to.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch-8.png?323f2c" alt="launchpad for apple" width="346" height="251" border="0" /></p>
<p>If you want to rename the folder (“New Folder” is not very informative), or if you want to rename an app, click on the plus sign on the bottom left corner, and then click the “<em>Rename</em>” button at the bottom of the screen, and then click on the icon you want to rename.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch-6.png?323f2c" alt="launchpad for apple" width="267" height="160" border="0" /></p>
<p>This way, you can easily rename folders to more descriptive titles, and also change any name if you don’t like the one its been given by WinLaunch.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch-7.png?323f2c" alt="apple launchpad tutorial" width="498" height="285"/></p>
<p>You can open a folder by clicking on it, and then launch any application in the folder by clicking on the icon.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch-11.png?323f2c" alt="" width="590" height="263"/></p>
<h2>Playing With The Settings</h2>
<p>WinLaunch is rather configurable, and you tweak many things to suit your needs and desires. To access the settings, click on the “<em>Settings</em>” button at the bottom of the screen.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch-1.png?323f2c" alt="apple launchpad tutorial" width="268" height="197"/></p>
<p>In the settings, you can enable and disable hotkeys and HotCorners. With these you can decide how WinLaunch will be activated. What you set here will be the only way to activate the program, so remember these settings. I found the a hot corner worked very well for me, and you can use it to both enable and disable the app. If you choose the “Show desktop when activated” option, WinLaunch will not be maximized; otherwise, it will be launched on the entire screen.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlanuch-2.png?323f2c" alt="apple launchpad tutorial" width="542" height="348"/></p>
<p>Among other things, you can also change the icons’ size and text size, and all the colors. It’s a bit hard to understand which color is which at first, but playing around with it makes everything clearer. There are some ready-made themes to choose from, and you can even upload photos for the launcher’s background if you wish.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch-3.png?323f2c" alt="" width="503" height="370"/></p>
<p>There are more things you can tweak, such as adjusting WinLaunch for multiple monitors (choosing which one it will appear on). Playing with the colors is the best part, though, and as you can see from the above screenshots, you can create lots of different styles and backgrounds. It can look like this:</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winlaunch-9.png?323f2c" alt="" width="449" height="306"/></p>
<p>And even like this (or better, if you actually have talent).</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/winluanch-12.png?323f2c" alt="apple launchpad" width="442" height="301"/></p>
<p>The options are pretty much endless. One downside of WinLaunch is that it’s a bit heavy on the RAM. On my computer, it was using up to 50MB of RAM, just when lying in the background. That’s a bit steep, but the developer does intend to fix this issue. Other than that, WinLaunch runs very smoothly, especially considering it’s still in beta, and toggling it on and off to launch applications quickly becomes a second nature. So if you’re on the hunt for better ways to launch your Windows apps, <a href="http://mrc0rrupted.deviantart.com/art/WinLaunch-0-4-Mac-OSX-Lion-Launchpad-for-windows-277763668?">give it a try</a>!</p>
<p>Know of more Launchpad emulators, or other original ways to launch apps in Windows 7? Share in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/enjoy-apples-launchpad-windows-machine-winlaunch/feed/</wfw:commentRss>
		<slash:comments>9</slash:comments>
		</item>
		<item>
		<title>Waterfox: Your New &amp; Speedy 64-bit Version Of Firefox [Windows]</title>
		<link>http://www.makeuseof.com/tag/waterfox-speedy-64bit-version-firefox-windows/</link>
		<comments>http://www.makeuseof.com/tag/waterfox-speedy-64bit-version-firefox-windows/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 17:00:47 +0000</pubDate>
		<dc:creator>Danny Stieben</dc:creator>
				<category><![CDATA[Browser Tips & Tricks]]></category>
		<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[64-bit]]></category>
		<category><![CDATA[browsers]]></category>
		<category><![CDATA[browsing tools]]></category>
		<category><![CDATA[firefox]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98567</guid>
		<description><![CDATA[Today's browsers are constantly trying to improve and beat their competition. This ranges from behind-the-scenes changes to improved speed or standards support, user interface changes for a cleaner look, or even the addition of entirely new features. However, the developers of all those browsers haven't been very active (or successful) in one type of improvement that could potentially bring some massive results: going from 32-bit to 64-bit.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/waterfox_intro.jpg?323f2c" alt="64 bit firefox" />Today&#8217;s browsers are constantly trying to improve and beat their competition. This ranges from behind-the-scenes changes to improved speed or standards support, user interface changes for a cleaner look, or even the addition of entirely new features.</p>
<p>However, the developers of all those browsers haven&#8217;t been very active (or successful) in one type of improvement that could potentially bring some massive results: going from 32-bit to 64-bit.</p>
<h2>Why 64-bit?</h2>
<p>Why is going from 32-bit to 64-bit an important step? Virtually all computers that you can find today are capable of running 64-bit operating systems. 64-bit operating systems enable you to use more than 3.25 GB of RAM, and increase the performance of your system in certain cases.</p>
<p>Memory management is also improved in 64-bit systems. In order to make use of this 64-bit capability, not only does the operating system need to be compiled for 64-bit machines, but the individual applications need to be as well. While 64-bit operating systems are capable of running 32-bit software (this is mainly the case for <a href="http://www.makeuseof.com/service/windows">Windows</a>; on other operating systems such as <a href="http://www.makeuseof.com/service/mac">Mac OS X</a> and <a href="http://www.makeuseof.com/service/linux">Linux</a>, it&#8217;s also possible but highly frowned upon), you won&#8217;t get the benefits that 64-bit software would provide.</p>
<h2>The Windows 64-bit Situation</h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/waterfox_chrome_sunspider.jpg?323f2c" alt="64 bit firefox" width="590" height="332" /><br />
On Windows, there are no official 64-bit builds of any browser except <a href="http://www.makeuseof.com/tags/internet-explorer/">Internet Explorer</a>. Even then, IE is available in both 32-bit and 64-bit flavors in order to be more compatible with plugins, which back then were primarily 32-bit only. However, the major plugins are now available in the 64-bit flavor, so browsers now have some motivation to crank out some 64-bit builds of their own. This seems to be taking a while though with a number of hurdles to overcome.</p>
<p><a href="http://www.makeuseof.com/tags/firefox">Firefox</a> has finally come out with a 64-bit nightly, but it&#8217;s nowhere near ready to be called stable. Instead, the developers of the <a href="http://www.makeuseof.com/dir/waterfox-faster-64bit-firefox-variant-windows/">Waterfox</a> project have been working hard to get an unofficial build of 64-bit Firefox out and making it fast. While Waterfox began as an unofficial project, <a href="http://www.makeuseof.com/tags/mozilla/">Mozilla</a> is now supporting it and may start incorporating it sometime in the future to release official, stable builds of 64-bit Firefox.</p>
<p>As you can see in the screenshot above, Waterfox beats <a href="http://www.makeuseof.com/tags/google-chrome/">Chrome</a> in the SunSpider benchmark, whereas Chrome usually beats regular Firefox.</p>
<h2>Downloading and Installing</h2>
<p>Getting and installing <a href="http://waterfoxproject.org/">Waterfox</a> is just as easy as with Firefox. Simply head over to their website&#8217;s <a href="http://waterfoxproject.org/downloads/">download page</a>, and scroll a little down to get the latest version. The page also states that you need to have the Visual C++ 2010 Redistributable Package (x64) installed, but this is not an issue for Windows 7 64-bit users, but rather for those on previous Windows 64-bit versions. Additionally, the page lists links to the 64-bit version of the most common plugins so that you can have a smooth Web experience with your new 64-bit browser.</p>
<h2>Easy Transition</h2>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/waterfox_main.jpg?323f2c" alt="64 bit firefox" width="590" height="485" /><br />
Waterfox is also very helpful when transitioning from regular Firefox because it uses the same Firefox profile as the 32-bit flavor. Therefore, any passwords, history, preferences, and add-ons that have been installed in regular Firefox will be instantly available upon first launch of Waterfox. As that implies, all add-ons made for regular Firefox also work 100% in Waterfox. The amount of work necessary to switch to the 64-bit Firefox browser is pretty minimal. To review, all you need to do is the following:</p>
<ul>
<li>Install Visual C++ 2010 Redistributable Package (x64) if necessary</li>
<li>Install 64-bit version of plugins if not already done</li>
<li>Install Waterfox</li>
</ul>
<h2>Conclusion</h2>
<p>Waterfox really is a great browser, making the Firefox we all know (and some of us love) a little faster and happier in its 64-bit environment. Mac OS X and Linux users don&#8217;t need to be too jealous that Waterfox is a Windows-only project, as those two operating systems have had official 64-bit builds of all major browsers for a relatively long amount of time.</p>
<p>What do you think about this project? Is there something you&#8217;d like to add about 64-bit systems? Let us know in the comments!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/waterfox-speedy-64bit-version-firefox-windows/feed/</wfw:commentRss>
		<slash:comments>33</slash:comments>
		</item>
		<item>
		<title>Create, Edit and Share PDFs the Right Way with Nitro Pro 7 [Giveaway]</title>
		<link>http://www.makeuseof.com/tag/create-edit-and-share-pdfs-the-right-way-with-nitro-pro-7-giveaway/</link>
		<comments>http://www.makeuseof.com/tag/create-edit-and-share-pdfs-the-right-way-with-nitro-pro-7-giveaway/#comments</comments>
		<pubDate>Mon, 06 Feb 2012 16:30:37 +0000</pubDate>
		<dc:creator>Christian Cawley</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[Home Feature]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[pdf]]></category>
		<category><![CDATA[pdf creator]]></category>
		<category><![CDATA[pdf editors]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98257</guid>
		<description><![CDATA[In the next two week, <strong>we're giving away 50 free copies of Nitro Pro 7 worth a <em>whopping</em> $6000</strong> in total! ]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/02/nitro-giveaway.png?323f2c" />You don’t have to look far to find a PDF application these days, but separating the wheat from the chaff to find a competent and flexible tool is becoming tougher. A few years ago creating a genuine, correctly-formatted PDF would require an expensive license for Adobe Standard, but these days you can download free virtual printers and even generate PDFs from office suites.</p>
<p>However, these free or bundled tools usually only offer the bare bones. If you’re looking for an all-in-one PDF reader, creator and editor, the latest release of Nitro PDF should provide you with all of the features that you need without breaking your budget on a product from Adobe.</p>
<p>With <a title="Try Nitro Pro 7" href="http://www.nitropdf.com/">Nitro Pro 7</a> you can create a PDF from one or more different file types, convert PDFs to other file types, extract key data from documents, edit documents and apply secure access requirements PDFs. In the next two week, <strong>we&#8217;re giving away 50 free copies of Nitro Pro 7 worth a <em>whopping</em> $6000</strong> in total! </p>
<h2>User Interface</h2>
<p>The first launch of <a href="http://www.nitropdf.com/">Nitro Pro 7</a> will display a “Getting Started” screen which highlights some of the application’s features. You can easily disable this via the <strong>Do not show at startup</strong> checkbox but it is worth spending a moment looking at the various tasks on offer.</p>
<p><img class="aligncenter size-full wp-image-98265" title="muo-nitro-splash" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-splash.png?323f2c" alt="The Nitro Pro 7 start screen" width="580" height="353" /></p>
<p>Everything is organized using the familiar ribbon menu that you might find in Windows Explorer or the different Microsoft Office applications and as such the features on offer are sensibly presented. For instance if you wish to convert a PDF to another format you will find the buttons on the <strong>Home</strong> tab; editing a PDF is possible via the <strong>Edit</strong> tab and adding passwords and redactions is via the controls available in the <strong>Protect</strong> menu.</p>
<p>Meanwhile via the <strong>Forms</strong> tab you can create forms on your document that comprise of text fields, radio buttons and checkboxes, as well as export and import data to and from a form on a PDF.</p>
<h2>Protecting Your PDF</h2>
<p>As the PDF format has become more and more widely used so the requirements for protecting and validating the contents of such documents has become increasing paramount.</p>
<p>Accordingly, Nitro Pro 7 features effective password, certification and redaction tools that are suitable for use in all levels of business. Found on the Protect tab, the redaction tool can be used to highlight text that should be blocked out from unauthorized viewing, and removed completely using the <strong>Apply all Redactions</strong> option.</p>
<p><img class="aligncenter size-full wp-image-99055" title="muo-nitro-redact" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-redact.png?323f2c" alt="Using the redact tool in Nitro Pro 7" width="580" height="187" /></p>
<p>Meanwhile Digital IDs and Signatures can be applied to a document, useful for establishing trust between yourself and the recipient of a PDF document that you have created.</p>
<p>Elsewhere, the Password Security setting allows you to set various passwords and profiles for the document, each with different privileges; for instance you can set a PDF document as being read-only for a specific password and even block printing altogether.</p>
<h2>Combining PDF Documents</h2>
<p>It so happens that I have a pretty important PDF-related task which I need to resolve. I have three documents, all in PDF format but each with a different page format that I need to combine into a single document.</p>
<p>Can Nitro Pro 7 help me out?</p>
<p>As it happens, yes it can. Using the <strong>Combine</strong> button on the <strong>Create</strong> section of the <strong>Home</strong> menu, I was easily able to merge the three documents – plus a cover – into one.</p>
<p><img class="aligncenter size-full wp-image-98258" title="muo-nitro-giveaway1" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-giveaway1.png?323f2c" alt="Selecting files to combine" width="435" height="566" /></p>
<p>The process is simple, requiring you to first browse for the PDF files (or indeed any other file type) and add them.</p>
<p>Following that, all you need to do is save the combined document &#8211; with a meaningful file name, of course!</p>
<p><img class="aligncenter size-full wp-image-98260" title="muo-nitro-giveaway3" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-giveaway3.png?323f2c" alt="Combined PDF documents" width="580" height="428" /></p>
<p>The preview view above shows two of the combined files – you can see the differences in artwork between the strips. Note that you’re not restricted to PDF documents here as you can also combine other document types into a PDF. For instance, you might wish to combine a Word document with an Excel spreadsheet.</p>
<h2>Editing a PDF</h2>
<p>If you&#8217;ve ever found yourself having to recreate a PDF document from scratch because the source file was lost then you will know that this is often a long and drawn out process that pretty much requires you to type the document into a word processor and save or convert it to a PDF.</p>
<p><img class="aligncenter size-full wp-image-98263" title="muo-nitro-giveaway4" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-giveaway41.png?323f2c" alt="Editing text in a PDF thanks to OCR" width="580" height="230" /></p>
<p>PDF editing tools have been available in the past but they can prove to be difficult to use and expensive. Fortunately Nitro Pro 7 features an easy-to-use editing tool which delivers good results. Available via the Edit tab, you can begin editing text by selecting the <strong>Edit</strong> button which opens the Text Tools Format view. Using this you can select sentences, append or amend, add and remove images and even watermark the document. If you have problems editing an OCR tool is provided to convert the text so that it can be edited.</p>
<p>As pictured above, right-clicking a block of text and selecting <strong>Edit Text</strong> will also allow you to edit the document&#8217;s contents.</p>
<p>Note also that pages can be deleted and inserted or even rotated &#8211; useful if you have a page-sized image that would look better oriented in a different way.</p>
<h2>Document Conversion</h2>
<p>While PDF is a popular format, it isn&#8217;t the only one suitable for e-books. Sadly it isn&#8217;t possible to accurately convert a PDF document to all current e-book formats, but fortunately Nitro Pro 7 features the ability to convert PDFs into a format that is more flexible in this respect: Microsoft Word&#8217;s DOCX format. In fact, documents can be converted and exported into plain text and rich text formats, as well as images.</p>
<p><img class="aligncenter size-full wp-image-99053" title="muo-nitro-convert" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-nitro-convert.png?323f2c" alt="A Word document and the original PDF used to create it." width="580" height="391" /></p>
<p>The results of a conversion to DOCX &#8211; performed via the <strong>Convert</strong> section of the Home tab &#8211; can be seen above. When in this state, the document can be reformatted and then converted into a variety of formats depending on your requirements.</p>
<h2>Conclusion</h2>
<p>Nitro 7 Pro is certainly as good an option as any of the Adobe PDF creation applications and certainly among the best of this type of software. As you can see from the screenshots above the results of my own PDF editing project were extremely favourable; this software has enabled me to perform a task that has for a long-time proved difficult and time-consuming.</p>
<p>Additional features that allow text editing and password protecting documents is similarly accomplished, resulting in a PDF solution that is every bit as good &#8211; if not better &#8211; than anything Adobe has ever released. <a href="http://www.nitropdf.com/try/default.aspx">Download</a> a fully-functional trial now and take it for a spin.</p>
<p>As a special treat to MakeUseOf readers, we&#8217;re giving away <strong>50 copies of Nitro Pro 7 worth $6000 in total</strong> over the next two weeks. Here&#8217;s how you can score a copy for yourself.</p>
<h2>How do I win a copy?</h2>
<p>It&#8217;s simple, just follow the instructions.</p>
<h3>Step 1: Fill in the giveaway form</h3>
<p>Please fill in the form with your <strong>real name and email address</strong> so that we can get in touch if you are chosen as a winner. <a href="https://muo.wufoo.com/forms/z7s7r5/" onclick="window.open(this.href,  null, 'height=443, width=680, toolbar=0, location=0, status=1, scrollbars=1, resizable=1'); return false">Click here if you can&#8217;t view the form.</a></p>
<p><script type="text/javascript">var host = (("https:" == document.location.protocol) ? "https://secure." : "http://");document.write(unescape("%3Cscript src='" + host + "wufoo.com/scripts/embed/form.js' type='text/javascript'%3E%3C/script%3E"));</script></p>
<p><script type="text/javascript">
var z7s7r5 = new WufooForm();
z7s7r5.initialize({
'userName':'muo', 
'formHash':'z7s7r5', 
'autoResize':true,
'height':'443',
'header':'show', 
'ssl':true});
z7s7r5.display();
</script></p>
<h3>Step 2: Share!</h3>
<p>You&#8217;re almost done. Now, all that&#8217;s left to do is to share the post. There are 2 options to choose from or you can do both!</p>
<table border="0" cellspacing="20">
<tbody>
<td width="240" align="middle" valign="top">
<p><strong>Like it on Facebook</strong>
<div align="center"><iframe src="http://www.facebook.com/plugins/like.php?href=http%3A%2F%2Fwww.makeuseof.com%2Ftag%2Fcreate-edit-and-share-pdfs-the-right-way-with-nitro-pro-7-giveaway%2F&amp;layout=box_count&amp;show_faces=true&amp;width=60&amp;action=like&amp;colorscheme=light&amp;height=65" scrolling="no" frameborder="0" style="border:none; overflow:hidden; width:60px; height:65px;" allowTransparency="true"></iframe></div>
</td>
<td width="240" align="middle" valign="top">
<p><strong>Or share it on Twitter</strong></p>
<div align="center"><a href="http://twitter.com/share" class="twitter-share-button" data-text="I've just entered @makeuseof's giveaway to win a FREE copy of Nitro Pro 7 worth $119.99! Woohoo!" data-count="vertical">Tweet</a><script type="text/javascript" src="http://platform.twitter.com/widgets.js"></script></div>
</td>
</tbody>
</table>
<p>This giveaway begins now and ends <strong>Friday, February 17th</strong>. The winners will be selected at random and informed via email.</p>
<p>Spread the word to your friends and have fun!</p>
<p><em>Interested in sponsoring a giveaway? We&#8217;d love to hear from you. Get in touch with us via <a href="http://www.makeuseof.com/makeuseof-giveaway-program/">the form at the bottom of this page</a>.</em></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/create-edit-and-share-pdfs-the-right-way-with-nitro-pro-7-giveaway/feed/</wfw:commentRss>
		<slash:comments>41</slash:comments>
		</item>
		<item>
		<title>Chat On IRC Like It&#8217;s 1995 With HydraIRC [Windows]</title>
		<link>http://www.makeuseof.com/tag/chat-irc-1995-hydrairc-windows/</link>
		<comments>http://www.makeuseof.com/tag/chat-irc-1995-hydrairc-windows/#comments</comments>
		<pubDate>Sun, 05 Feb 2012 02:30:37 +0000</pubDate>
		<dc:creator>Craig Snyder</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[chat]]></category>
		<category><![CDATA[chat client]]></category>
		<category><![CDATA[chat tips]]></category>
		<category><![CDATA[instant messaging]]></category>
		<category><![CDATA[irc]]></category>
		<category><![CDATA[old-school]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98519</guid>
		<description><![CDATA[You may be taking your Skype instant messaging and video calls or your iPhone FaceTime for granted, but way back before the standalone IM client was even an idea, there was one major solution: IRC (Internet Relay Chat). There are a lot of multi-IM clients that support the IRC protocol, but nothing really beats the efficiency and oldschool feel of a standalone chat client.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/irc.png?323f2c" alt="irc chat software"/>You may be taking your Skype instant messaging and video calls or your iPhone FaceTime for granted, but way back before the standalone IM client was even an idea, there was one major solution: IRC (Internet Relay Chat).</p>
<p>I&#8217;m not even going to pretend. I was 5 or 6 years old back in 1995 so this is well before my time, too. In the age of social networking and Internet 2.0, web-based chat rooms are practically dead. They&#8217;re all but done with; on the endangered list. Still, IRC is the most popular server/client chat protocol in the world. <em>Maybe</em> the rooms aren&#8217;t as active as they were 10+ years ago, but we&#8217;ve still got a pulse!</p>
<p>Some boredom and curiosity mixed well together and I&#8217;ve rediscovered IRC just recently. Now, I&#8217;d like to show you how to use my favorite IRC client, <a href="http://www.hydrairc.com/">HydraIRC</a>. There are a lot of <a href="http://www.makeuseof.com/tag/msn-yahoo-aim-icq-in-one/">multi-IM clients</a> (like <a href="http://www.makeuseof.com/tag/trillian-astra-%E2%80%93-is-it-the-best-instant-messaging-client-now/">Trillian</a>) that support the IRC protocol, but nothing really beats the efficiency and oldschool feel of a standalone chat client. You&#8217;ve probably heard of <a href="http://www.makeuseof.com/tag/flashback-3-fun-mirc-scripts/">mIRC</a>, the most popular IRC client, but here&#8217;s a few reasons why I love Hydra:</p>
<ul>
<li>It is portable. Download the ZIP and extract it to wherever you like. Put it in your Dropbox or on a flash drive. Portable applications beat out self-installing packages every day of the week.</li>
<li>It is lightweight. mIRC is a little bulky for me.</li>
<li>It is free. Everyone loves things that are free.</li>
<li>It supports everything that you need in an IRC client: multiple servers, DCC, event logs, channel monitoring, an extremely flexible GUI, and more.</li>
</ul>
<p><img class="aligncenter size-full wp-image-98531" title="HydraIRC GUI" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/hydragui.png?323f2c" alt="irc chat software" width="580" height="277" /></p>
<p>You can check out some more, <a href="http://www.hydrairc.com/content/screenshots">official screenshots at the official HydraIRC website</a>.</p>
<p>Anyway, rusty IRC legend or complete newbie, let&#8217;s get you started. <a href="http://www.hydrairc.com/content/downloads">Get HydraIRC downloaded.</a> Next step is to figure out where you want to chat and what about, right? You want to go into the <strong>File</strong> menu, then <strong>New Server</strong>. Hydra comes preloaded with loads of the most popular IRC servers.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/hydraservers.png?323f2c" alt="irc chat" width="367" height="445" /></p>
<p>Now it&#8217;s on you to pick the network (and associated server) that you want. You can either query up Google and learn a bit about each, or experience can guide you. FreeNode has tons of channels for coding, tech support, general hacking, networking, and things of that nature. EFNet is your oldschool &#8220;general&#8221; server. QuakeNet and GameSurge are for gamers, and so on.<br />
For this example, let&#8217;s go ahead and go on GameSurge. Double click <strong>GameSurge</strong>, click the IRC server that expands beneath it, and then click <strong>OK</strong> to connect.</p>
<p>Every server consists of many channels (or rooms). Upon connecting, the Channel List window will pop up. If it doesn&#8217;t, you can click into the <strong>Channel</strong> menu and then <strong>Channel List</strong>. Click <strong>Populate List</strong> and after a second, you&#8217;ll have a list of every channel on the server. Click the <strong>Users</strong> header once and you&#8217;ll have sorted the channels by the most users. Scroll through, see if there are any you may be interested in, and then click <strong>Join</strong>.</p>
<p><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/hydrachannels.png?323f2c" alt="irc chat software" width="524" height="427" /></p>
<p>This is how you join an IRC server and a channel (the easy way). There are hundreds and hundreds of servers out there and thousands of channels. There&#8217;s probably an active channel for just about any subject that comes to mind. It&#8217;s good to have it sitting in your taskbar for idle moments in between tasks.</p>
<p>If you need any help or want to dive deeper into the subject, let&#8217;s chat in the comments. If you really like IRC chatting, consider <a href="http://www.makeuseof.com/tag/how-to-create-your-own-irc-chat-channel/">setting up your own IRC channel</a> and read our post on that.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/chat-irc-1995-hydrairc-windows/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>Sample Metro On Your Windows PC Before Upgrading To Windows 8</title>
		<link>http://www.makeuseof.com/tag/sample-metro-windows-pc-upgrading-windows-8/</link>
		<comments>http://www.makeuseof.com/tag/sample-metro-windows-pc-upgrading-windows-8/#comments</comments>
		<pubDate>Fri, 03 Feb 2012 22:31:21 +0000</pubDate>
		<dc:creator>Christian Cawley</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[Metro UI]]></category>
		<category><![CDATA[operating system]]></category>
		<category><![CDATA[transformation pack]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[windows 8]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98486</guid>
		<description><![CDATA[Microsoft is delivering a whole new feel to their operating system with Windows 8 in the shape of the Metro UI. Tile-based, with an elegant typeface, the very future of Windows could ride on its success or failure. Ignoring questions about exactly how anyone without a touchscreen monitor is going to get the most out of Metro, there are ways in which the interface can be sampled without installing Windows 8 on your computer.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/12/Windows-8-Beta-Topper.png?323f2c" alt="metro pcs" />Microsoft is delivering a whole new feel to their operating system with Windows 8 in the shape of the Metro UI. Tile-based, with an elegant typeface, the very future of Windows could ride on the success or failure of this next release.</p>
<p>Naturally there is some resistance to swapping the traditional desktop with this new user interface. After all, things just work as they are with the point and click of a mouse. Yet Microsoft is trying something different and attempting to pioneer a new direction for desktop operating systems. For that at least they should be applauded.</p>
<p>Ignoring questions about exactly how anyone without a touchscreen monitor is going to get the most out of Metro, there are ways in which the interface can be sampled without installing Windows 8 on your computer.</p>
<h2>View Internet Explorer With MetroIE</h2>
<p>One of the main uses for any computer is to browse the web and Windows 8 features a new version of Internet Explorer. While this isn’t yet available for Windows 7 you can sample its likely user interface by visiting <a title="MetroIE for Windows 7" href="http://yvidhiatama.deviantart.com/art/MetroIE-Beta-Part-of-Origami-266040311">this link</a> and downloading the astonishingly small 64KB file.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-metroesque.png?323f2c" alt="metro pcs" /></p>
<p>After unzipping and running <em>MetroIE.exe</em> you will find that the file is a very convincing overlay for the Internet Explorer browser, which means that it behaves just as any browser should. Note however that it takes a little time to open webpages.</p>
<h2>MetroTwit</h2>
<p>Like Windows Phone, Windows 8 features an integrated Twitter app. While MetroTwit doesn’t deliver quite the same feel, it is still worth trying if you’re interested in seeing how the Metro UI stands up to repeated or consistent use. After all, it’s all very well looking good, but would you want to look at the Segoe font all day long? This is the way to find out.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-metroesque1.png?323f2c" alt="metro pc" /></p>
<p>You can download MetroTwit from <a href="http://www.metrotwit.com/">here</a>. Installation requires an Internet connection, but be aware that this app isn’t suitable for accessing multiple Twitter accounts.</p>
<h2>Zune</h2>
<p>Less experimental and a whole lot easier to use is the Zune media player and sync client, available from <a href="http://www.zune.net/">this link</a>. This is essentially the Microsoft version of iTunes, used for buying MP3s, syncing with a Windows Phone and managing updates, but it is also an excellent media player, far better than the surely-end-of-life Windows Media Player.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-metroish.png?323f2c" alt="metro pc" /></p>
<p>If you already have Zune on your PC you have already sampled the beauty and versatility of Metro.</p>
<h2>Transform Your Full Desktop</h2>
<p>The tile-based interface is arguably the least imaginative use for Metro when it comes to powerful desktop and laptop computers. It is very similar to the design seen on a Windows Phone (where it is of course more appropriate) and far less striking than on Xbox 360 or even in the Zune media player.</p>
<p>To try it out for yourself you can download the beta version from Microsoft and install it to your hard drive or <a href="http://www.makeuseof.com/tag/windows-8-virtualbox-free">into a virtual machine</a>.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/muo-metroesque2.png?323f2c" alt="metro pc" /></p>
<p>Alternatively you can try the Windows 8 Transformation Pack, a 58MB download from <a title="Windows X download" href="http://windowsx.deviantart.com/#/d4bt3po">this page</a>. After downloading, simply unzip and run the <em>Windows 8 Transformation Pack 2.0.exe</em> file, set the options that you want and install it. You’ll then need to apply it as a theme (<em>right-click desktop &gt; Personalize</em>) before rebooting, whereupon you will find that your current version of Windows has suddenly turned square, elegant and colourful.</p>
<h2>Windows Phone Metro Demo</h2>
<p>If you’re using an Android or iPhone device you might also like to get an idea of how Windows Phone works or at least sample Metro in mobile form. This can be done by visiting <a href="http://m.microsoft.com/windowsphone/en-us/demo/index.html">this page</a> on your phone’s browser, where you will find a virtualised mobile phone version of the Metro UI as found on various devices from Samsung, LG, HTC and Nokia.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/01/iphone-wp7.jpg?323f2c" alt="metro pcs" /></p>
<p>All you need to do to interact is tap the tiles with your thumb or fingers, swiping left and right to explore what&#8217;s on offer.</p>
<h2>Conclusion</h2>
<p>As we move ever closer to the launch of Metro as a desktop user interface, more and more tools and apps are being made available for users to get an idea of how easy it is to use.</p>
<p>People want to know that they can use an operating system long-term, rather than just for a few moments at a time as with a mobile phone. As such, before spending money on Windows 8 or even downloading the developer preview or beta, try a few of these apps and see what you think. Meanwhile if you have any of your own suggestions, let us know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/sample-metro-windows-pc-upgrading-windows-8/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached (Requested URI is rejected)
Database Caching 1/27 queries in 0.025 seconds using apc
Object Caching 688/752 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 17:01:17 -->
