<?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; microsoft outlook</title>
	<atom:link href="http://www.makeuseof.com/tags/microsoft-outlook/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 21:31:21 +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 Export Your Outlook Tasks To Excel With VBA</title>
		<link>http://www.makeuseof.com/tag/export-outlook-tasks-excel-vba/</link>
		<comments>http://www.makeuseof.com/tag/export-outlook-tasks-excel-vba/#comments</comments>
		<pubDate>Fri, 10 Feb 2012 17:01:28 +0000</pubDate>
		<dc:creator>Ryan Dube</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[microsoft excel]]></category>
		<category><![CDATA[microsoft outlook]]></category>
		<category><![CDATA[spreadsheet]]></category>
		<category><![CDATA[tasks]]></category>
		<category><![CDATA[visual basic]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=98984</guid>
		<description><![CDATA[Whether or not you are a fan of Microsoft, one good thing that can be said about MS Office products, at least, is how easy it is to integrate each of them with one another. Just think of the power that comes from having incoming emails automatically generating new tasks or new calendar appointments, or having a completed task automatically email your boss with the updated status report from the task description.]]></description>
			<content:encoded><![CDATA[<p><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/02/greenmarker.png?323f2c" alt="" />Whether or not you are a fan of Microsoft, one good thing that can be said about MS Office products, at least, is how easy it is to integrate each of them with one another.</p>
<p>Just think of the power that comes from having incoming emails automatically generating new tasks or new calendar appointments, or having a completed task automatically email your boss with the updated status report from the task description.</p>
<p>If you do it right, you can cut your entire day&#8217;s workload by a boatload just by automating things in an intelligent and efficient way.</p>
<p>If you follow my writing here, then you know that in the past I&#8217;ve covered things like integrating <a href="http://www.makeuseof.com/tag/basic-internet-browser-vba/">web browser features into Excel</a>, automatically <a href="http://www.makeuseof.com/tag/3-ways-open-applications-windows-maximized-vb-script/">maximizing application windows</a>, or automating <a href="http://www.makeuseof.com/tag/how-to-create-self-updating-excel-charts-in-three-easy-steps/">chart updates in Excel</a>.</p>
<p>Well, in this article I&#8217;m going to cover another automation task &#8211; actually one that I&#8217;ve used often more recently &#8211; to automatically update an Excel spreadsheet with all of your remaining active Outlook tasks at the end of the day.</p>
<h2>Feeding Outlook Tasks To An Excel Spreadsheet</h2>
<p>There are a lot of reasons you may want to do this. Maybe you want to track your unfinished tasks on a daily basis in a format that you can quickly mail off to someone (not so easy to do with Outlook tasks). Or maybe it&#8217;ll become part of a larger report that you&#8217;ll be typing up in Word.</p>
<p>Whatever the case may be, the ability to capture and output uncompleted Outlook task information is a useful thing.</p>
<p>For this example, here&#8217;s my sample Outlook task list with 5 remaining tasks that I still haven&#8217;t completed yet.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/02/outlook2b.png?323f2c" alt="" width="495" height="201" /></p>
<p>Everything we&#8217;re going to do here, is in VBA. In Outlook, you get to the VBA editor by clicking on &#8220;<em>Tools</em>&#8220;, then &#8220;<em>Macro</em>&#8221; and then choosing the &#8220;<em>Visual Basic Editor</em>&#8220;.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/02/outlook1.png?323f2c" alt="" width="405" height="375" /></p>
<p>The code that you&#8217;re going to use to capture your task list and export it to Excel is actually not quite as complicated as you might think. The first step is to plug into both Outlook objects and Excel objects by creating the necessary variable definitions. Then, using the workbook object you&#8217;ve created, start off by creating the header in your spreadsheet.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #151B8D; font-weight: bold;">Dim</span> strReport <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> olnameSpace <span style="color: #151B8D; font-weight: bold;">As</span> Outlook.NameSpace
  <span style="color: #151B8D; font-weight: bold;">Dim</span> taskFolder <span style="color: #151B8D; font-weight: bold;">As</span> Outlook.MAPIFolder
  <span style="color: #151B8D; font-weight: bold;">Dim</span> tasks <span style="color: #151B8D; font-weight: bold;">As</span> Outlook.Items
  <span style="color: #151B8D; font-weight: bold;">Dim</span> tsk <span style="color: #151B8D; font-weight: bold;">As</span> Outlook.TaskItem
  <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
  <span style="color: #151B8D; font-weight: bold;">Dim</span> sht <span style="color: #151B8D; font-weight: bold;">As</span> Excel.Worksheet
&nbsp;
  <span style="color: #151B8D; font-weight: bold;">Dim</span> strMyName <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> x <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Integer</span>
  <span style="color: #151B8D; font-weight: bold;">Dim</span> y <span style="color: #151B8D; font-weight: bold;">As</span> <span style="color: #F660AB; font-weight: bold;">Integer</span>
&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\MyActiveTasks.xls&quot;</span>)
&nbsp;
<span style="color: #008000;">'  exWb.Sheets(strMyName).Delete
</span><span style="color: #008000;">'  exWb.Sheets.Add (strMyName)
</span>
  <span style="color: #151B8D; font-weight: bold;">Set</span> olnameSpace = Application.GetNamespace(<span style="color: #800000;">&quot;MAPI&quot;</span>)
  <span style="color: #151B8D; font-weight: bold;">Set</span> taskFolder = olnameSpace.GetDefaultFolder(olFolderTasks)
&nbsp;
  <span style="color: #151B8D; font-weight: bold;">Set</span> tasks = taskFolder.Items
&nbsp;
  strReport = <span style="color: #800000;">&quot;&quot;</span>
&nbsp;
  <span style="color: #008000;">'Create Header
</span>  exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(1, 1) = <span style="color: #800000;">&quot;Subject&quot;</span>
  exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(1, 2) = <span style="color: #800000;">&quot;Due Date&quot;</span>
  exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(1, 3) = <span style="color: #800000;">&quot;Percent Complete&quot;</span>
  exWb.Sheets(<span style="color: #800000;">&quot;Sheet1&quot;</span>).Cells(1, 4) = <span style="color: #800000;">&quot;Status&quot;</span></pre></div></div>

<p>So, here&#8217;s what the new spreadsheet looks like. Your Outlook app just created a new Excel file called &#8220;MyActiveTasks.xls&#8221; in the C:\temp directory, and created a header for the tasks that you&#8217;re about to insert.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/02/outlook3.png?323f2c" alt="" width="400" height="262" /></p>
<p>So, now it&#8217;s time to extract your tasks and insert them into the Excel file. I use a &#8220;y&#8221; variable starting at two in order to make sure the first row that&#8217;s used isn&#8217;t the first, because I don&#8217;t want to overwrite the header.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;">y = 2
&nbsp;
  <span style="color: #8D38C9; font-weight: bold;">For</span> x = 1 <span style="color: #8D38C9; font-weight: bold;">To</span> tasks.Count
&nbsp;
       <span style="color: #151B8D; font-weight: bold;">Set</span> tsk = tasks.Item(x)
&nbsp;
       <span style="color: #008000;">'strReport = strReport + tsk.Subject + &quot;; &quot;
</span>
       <span style="color: #008000;">'Fill in Data
</span>       <span style="color: #8D38C9; font-weight: bold;">If</span> <span style="color: #8D38C9; font-weight: bold;">Not</span> tsk.Complete <span style="color: #8D38C9; font-weight: bold;">Then</span>
&nbsp;
        exWb.Sheets(<span style="color: #800000;">&quot;Ryan&quot;</span>).Cells(y, 1) = tsk.Subject
        exWb.Sheets(<span style="color: #800000;">&quot;Ryan&quot;</span>).Cells(y, 2) = tsk.DueDate
        exWb.Sheets(<span style="color: #800000;">&quot;Ryan&quot;</span>).Cells(y, 3) = tsk.PercentComplete
        exWb.Sheets(<span style="color: #800000;">&quot;Ryan&quot;</span>).Cells(y, 4) = tsk.Status
        y = y + 1
&nbsp;
       <span style="color: #8D38C9; font-weight: bold;">End</span> <span style="color: #8D38C9; font-weight: bold;">If</span>
&nbsp;
  <span style="color: #8D38C9; font-weight: bold;">Next</span> x</pre></div></div>

<p>What this script does is searches through your entire list of task items in Outlook, checks to see whether the item is completed yet, and if it isn&#8217;t, then it inserts that task information into 4 cells of the spreadsheet. If you wanted to, you could insert more information. Just explore what task information is available by typing &#8220;tsk.&#8221; and then browsing through the list of properties that pop up.</p>
<p>Now here&#8217;s what the sheet looks like.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/02/outlook41.png?323f2c" alt="" width="400" height="276" /></p>
<p>Being a bit of a perfectionist, there&#8217;s still a problem. Notice how column A clipped the last task subject?&#8221; I don&#8217;t like that. So let&#8217;s add a little bit more code to autofit all columns in the Excel table.</p>

<div class="wp_syntax"><div class="code"><pre class="vb" style="font-family:monospace;"><span style="color: #008000;">'Autofit all column widths
</span>
<span style="color: #8D38C9; font-weight: bold;">For</span> <span style="color: #8D38C9; font-weight: bold;">Each</span> sht <span style="color: #8D38C9; font-weight: bold;">In</span> ActiveWorkbook.Worksheets
    sht.Columns(<span style="color: #800000;">&quot;A&quot;</span>).EntireColumn.AutoFit
    sht.Columns(<span style="color: #800000;">&quot;B&quot;</span>).EntireColumn.AutoFit
    sht.Columns(<span style="color: #800000;">&quot;C&quot;</span>).EntireColumn.AutoFit
    sht.Columns(<span style="color: #800000;">&quot;D&quot;</span>).EntireColumn.AutoFit
<span style="color: #8D38C9; font-weight: bold;">Next</span> sht
&nbsp;
exWb.Save
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>The <em>Save</em> and <em>Close</em> methods in those last few lines will save the sheet and close it so that it doesn&#8217;t remain locked by the application, otherwise it would be difficult to open the Excel file until you closed Outlook.</p>
<p>So, now here&#8217;s what the finished spreadsheet looks like.</p>
<p><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2012/02/outlook5.png?323f2c" alt="" width="404" height="273" /></p>
<p>When do you set the script to run? Well, I set it up to run on the <em>&#8220;Application.Close()&#8221;</em> event, which runs when you exit Outlook at the end of the day. This will make outlook produce the Excel spreadsheet report at the end of the day, all on its own.</p>
<p>Can you think of any other cool uses for this technique? Maybe automatically firing off an email with the list of tasks, or outputting them to an HTML file and FTPing it to your web server?</p>
<p>With a little creativity, it&#8217;s amazing what you can pull off with a bit of scripting automation. Share your own thoughts and ideas in the comments section below!</p>
<p><small><a href="http://image.shutterstock.com/display_pic_with_logo/581935/581935,1316276762,1/stock-photo-one-paper-with-an-empty-to-do-list-with-green-check-marks-and-a-green-pen-84810577.jpg" rel="nofollow">Shutterstock</a></small></p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/export-outlook-tasks-excel-vba/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use Tone Check To Keep Your Emails Friendly &amp; Free of Rudeness</title>
		<link>http://www.makeuseof.com/tag/tone-check-emails-friendly-free-rudeness/</link>
		<comments>http://www.makeuseof.com/tag/tone-check-emails-friendly-free-rudeness/#comments</comments>
		<pubDate>Fri, 12 Aug 2011 19:30:56 +0000</pubDate>
		<dc:creator>Dave LeClair</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[chrome extensions]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[microsoft outlook]]></category>
		<category><![CDATA[writing]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=83126</guid>
		<description><![CDATA[In the heat of the moment anything can happen. Maybe your boss just emailed you to let you know that you have to come in and work on Saturday. Fortunately for all of us short tempered hot heads, there is Tone Check. Think of Tone Check as a spell check for your anger. ]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/300300.png" /><img class="align-right" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/300300.png?323f2c" alt="email filter software"/>In the heat of the moment anything can happen. Maybe your boss just emailed you to let you know that you have to come in and work on Saturday. Or maybe your girlfriend just dropped you a line to tell you that the dog had an accident all over your side of the bed. You just never know what you might open up your email to find, and you need make sure you prepare your responses accordingly.</p>
<p>Fortunately for all of us short tempered hot heads, there is <a href="http://tonecheck.com/">Tone Check</a>. Think of Tone Check as a spell check for your anger. Maybe you are smart enough to know on your own that telling your boss he has a stupid face is not the best career decision, but if you are not, Tone Check will remind you.</p>
<h2>Platforms</h2>
<p>Tone Check is available for Microsoft Outlook 2003, 2007, and 2010, as well as IBM Lotus Notes. The version I am using is their Chrome extension with Gmail. As of publication it is only available as an extension for Chrome, but it is in development for Firefox and Safari as well, so keep your eyes peeled for that. The developers have also said they are looking into Apple Mail, and Windows Live Mail as possible platforms for the program in the future.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/platforms.png?323f2c" alt="email filter software" width="247" height="252" /></p>
<h2>Installation</h2>
<p>Head over to <a href="http://tonecheck.com/">Tone Check&#8217;s official website</a> and choose which version you would like to download. If you choose the Chrome extension you will be taken to the extension download page, click install, restart your browser and go to your Gmail account. Tone Check will alert you that you need to authenticate your account. Simply click the link on the top of your browser window and you will be sent to their site to do so.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/tonecheck2.png?323f2c" alt="email filters" width="529" height="40" /><br />
If you opt for Outlook or Lotus Notes, go to their website, choose whether you want to log in with a Google Account or create a new one. Follow the installer step by step, and make sure to close Outlook or Notes during the installation process.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/toneins.png?323f2c" alt="email filters" width="504" height="379" /><br />
Once the installer is finished re-open Outlook and log in, either with your Google Account, or with your newly created Tone Check account.</p>
<h2>Using the Program</h2>
<p>Tone Check works automatically in the background once you have logged in and set up the program. On the bottom of your email there is a little meter that rates the tone. The higher the meter is filled, the worse the program feels about your current tone.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/tonecheckerresults.png?323f2c" alt="email filters" width="346" height="54" /><br />
There are a number of settings in the program to decide exactly how you want Tone Check to handle your emails. You can decide if you want Tone Check to start automatically when you start your email, and once the program is running, whether you want it to check only when you prompt it to, or automatically. My favorite option is the &#8220;show more emotions&#8221; one, which breaks down the tone even further. For example, in response to a friend, I typed &#8220;That is ill&#8221; and it told me it was depressing. You can also decide if you want it to alert you before you send a message that it is over the tone tolerance.</p>
<p>There is also a nice slider that allows you to tell the program how sensitive it should be. This would be something you want to adjust depending on the intended audience of the email. They also feature dynamic tolerance, which allows the program to learn how you tend to write over time, and then flag anything that sounds like something you wouldn&#8217;t normally say.<br />
<img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2011/08/tonecheckslider.png?323f2c" alt="email filter software" width="515" height="109" /></p>
<h2>Conclusion</h2>
<p>Tone Check is a really an awesome program. If you send a lot of emails I think it is a must have. Sometimes you don&#8217;t think about how your emails may come across, and having a program tell you can save a lot of headaches later.</p>
<p>Has Tone Check saved you from calling your boss all kinds of insulting names? Are you such a bad person that the program exploded at your harsh tones? Let us know in the comments! While you are at it, you can also calibrate your responses with the help of <a href="http://www.makeuseof.com/tag/7-netiquette-guidelines-writing-emails-forum-posts/">7 Netiquette Guidelines For Writing Emails &amp; Forum Posts</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/tone-check-emails-friendly-free-rudeness/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>TwInbox &#8211; Tweet Directly From Within Microsoft Outlook</title>
		<link>http://www.makeuseof.com/tag/twinbox-tweet-microsoft-outlook-addon/</link>
		<comments>http://www.makeuseof.com/tag/twinbox-tweet-microsoft-outlook-addon/#comments</comments>
		<pubDate>Wed, 27 Oct 2010 19:30:31 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[Facebook & Twitter]]></category>
		<category><![CDATA[addons]]></category>
		<category><![CDATA[microsoft outlook]]></category>
		<category><![CDATA[Twitter]]></category>
		<category><![CDATA[twitter client]]></category>
		<category><![CDATA[twitter tips]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=56587</guid>
		<description><![CDATA[There are a lot of us who still use desktop email clients. If it&#8217;s Windows, there&#8217;s a high chance that it&#8217;s Outlook. Now, Outlook users have a peculiarity. They hate to leave Outlook and go elsewhere for their other communication needs. And sometimes, Twitter begs you to tweet. The damn thing is so addictive. I [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox.jpg" /><img style="border: 0px none;margin-left:20px;float:right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox.jpg?323f2c" alt="tweet from outlook"/>There are a lot of us who still use <a href="http://www.makeuseof.com/tags/email-client">desktop email clients</a>. If it&#8217;s Windows, there&#8217;s a high chance that it&#8217;s <a href="http://www.makeuseof.com/tags/microsoft-outlook">Outlook</a>. Now, Outlook users have a peculiarity. They hate to leave Outlook and go elsewhere for their other communication needs. And sometimes, Twitter begs you to tweet. The damn thing is so addictive.</p>
<p>I may be atypical, but sometimes I hate to leave Outlook and switch on something like the excellent TweetDeck or any other dedicated <a href="http://www.makeuseof.com/tag/4-cool-web-based-alternatives-to-tweetdeck-and-seesmic-desktop/">Twitter clients</a>. I have nothing against these excellent Twitter clients but maybe it&#8217;s just my laziness rearing its ugly head. For me, the idea is to keep every communication in a central place as far as possible.</p>
<p><span id="more-56587"></span><br />
A Twitter add-in that allows us to tweet from within Outlook is the need of the day. OutTwit answered that need and then it changed its name to <strong>TwInbox</strong>. The free TwInbox comes with better features and usability. From the looks of it, TwInbox is a perfect marriage of Twitter and Outlook. But is it harmonious enough? That&#8217;s what we aim to find out with a few test tweets.</p>
<p><strong><a href="http://www.techhit.com/TwInbox/twitter_plugin_outlook.html">TwInbox</a></strong> (ver. 2.1.0.115) at just under 1MB is a small enough install for Outlook 2003 and 2007. It takes its place on the Outlook toolbar. Now, you can update your Twitter status directly from Outlook.</p>
<h2>Getting to Know TwInbox</h2>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox01.jpg?323f2c" alt="tweet from outlook"/></p>
<p>TwInbox has a configuration wizard that helps you take the first steps with this Twitter client for Outlook. You have to give it your Twitter account information of course. Select a folder where your tweets will be kept.</p>
<p>After you have given TwInbox the basic info (TwInbox supports multiple accounts), here&#8217;s how the <em>Options</em> box looks:</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox02.jpg?323f2c" alt="twitter outlook"/></p>
<p>You might want to personalize the tweet update frequency (Automatic Updates) and a setting like &#8220;“ <em>Preview Shortened URL</em>. The other setting which really helps me is assigning a shortcut key via the UI tab. That allows me to speedily bring up a new tweet window and retweets too.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox03.jpg?323f2c" alt="twitter outlook"/></p>
<h2>TwiInbox Calls On the Power of Outlook</h2>
<p>TwInbox creates folders to store the tweets. You can specify how the folders are to be created. For example, you can create separate folders for different types of tweets (direct messages, mentions, etc) or you can put it all in one folder. With TwInbox you can also create individual folders for each sender.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox04.jpg?323f2c" alt="twitter outlook"/></p>
<p>Just like Outlook, you can create <em>Search Folders </em>to filter and display tweets from specific senders, or only tweets that contain a particular word, or match any other criteria using Outlook filters.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox05.jpg?323f2c" /></p>
<p>The <em>Search/Track/Group</em> feature of TwInbox is a tool to get familiar with if you want to organize all your tweets. The powerful feature can be used to direct incoming tweets to specific folders. Also, if you want to keep a record of your sent or received tweet then the feature can be used thanks to the search operators that are used by Twitter. See the Twitter list of <a href="http://search.twitter.com/operators">search operators</a>.</p>
<h2>Work Your Tweets Just Like Outlook Messages</h2>
<p>Just like Outlook messages, you can click on the column header and rearrange your tweets alphabetically. Just like email messages, you can sort tweets according to various criteria.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox06.jpg?323f2c" alt="twitter outlook social connector"/></p>
<p>You can search through your entire sea of tweets with the same Outlook search or any other Inbox search you use.</p>
<p>You can go in for Outlook&#8217;s <em>Mailbox Cleanup</em> and Auto-archive items which are older than a set number of days. (<em>Right click</em> on the TwInbox folder <em>&#8220;“ Properties &#8220;“ Auto Archive</em>).</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox07.jpg?323f2c" alt="twitter outlook social connector"/></p>
<h2>Just Tweeting</h2>
<p>TwInbox supports all the usual Twitter commands like <em>d username, @username, follow username, and leave username</em>. You can also use Outlook&#8217;s <em>Reply</em> or <em>Reply All</em> buttons to send forth your tweets. It&#8217;s much faster if you use the shortcut keys.</p>
<p>When it comes to picture attachments, you need to just highlight any email in Outlook and upload the picture that&#8217;s attached to the highlighted email. You can also browse your computer and pick up a picture from there. The attached picture is tweeted via TwitPic, Posterous, or Twitgoo.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox08.jpg?323f2c" alt="twitter outlook social connector"/></p>
<p>TinyURL support comes with Twinbox. Paste any URL into a Tweet, click a button, and it&#8217;s shortened. You can use your own Bit.ly account by giving the log-in details in the <em>Preferences</em> dialog.</p>
<p>If you are the statistician, or just want to see who the top Tweeter in your inbox is, use the <em>Stats</em> button to display the column graph. You get it for the day and the month.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/10/TwInbox09.jpg?323f2c" alt="tweet from outlook"/></p>
<p>For me, <strong><a href="http://www.techhit.com/TwInbox/twitter_plugin_outlook.html">TwInbox</a></strong> is a productivity tool more than a simple <a href="www.makeuseof.com/dir/tag/twitter/ ">Twitter</a> app. It nearly makes Outlook a single window console for all net chatter. What&#8217;s great is that TwInbox design is in sync with the way we use Outlook, so old habits don&#8217;t have to die hard. It might lack some advanced features like scheduling for future tweets or manage Twitter lists, but for day to day uses it just suffices.</p>
<p>What&#8217;s your impression? Comment or tweet to let us know.</p>
<p><strong>Also, don&#8217;t miss our free guide:</strong> <a href="http://www.makeuseof.com/tag/the-complete-guide-to-twitter-pdf/">Twitter: Best Practices and Tips </a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/twinbox-tweet-microsoft-outlook-addon/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>How to Harmoniously Work With Google Docs from Microsoft Outlook</title>
		<link>http://www.makeuseof.com/tag/harmoniously-work-google-docs-microsoft-outlook/</link>
		<comments>http://www.makeuseof.com/tag/harmoniously-work-google-docs-microsoft-outlook/#comments</comments>
		<pubDate>Mon, 20 Sep 2010 17:30:39 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[email management]]></category>
		<category><![CDATA[google docs]]></category>
		<category><![CDATA[microsoft outlook]]></category>
		<category><![CDATA[productivity]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=53545</guid>
		<description><![CDATA[There are some of us who still prefer a desktop email client like Microsoft Outlook, but also rely on the flexibility of the cloud via Google Docs. If you want the twain to meet i.e. a way to work with Google Docs from Microsoft Outlook, a new app called Harmon.ie seems to be the answer. [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie.jpg" /><img style="border: 0px none;margin-left:20px;float:right;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie.jpg?323f2c" alt="google docs"/>There are some of us who still prefer a desktop <a href="http://www.makeuseof.com/tags/email-client">email client</a> like Microsoft Outlook, but also rely on the flexibility of the cloud via <a href="http://www.makeuseof.com/tags/google-docs/">Google Docs</a>. If you want the twain to meet i.e. a way to work with Google Docs from Microsoft Outlook, a new app called <strong>Harmon.ie</strong> seems to be the answer.</p>
<p><a href="http://harmon.ie/GoogleDocs">Harmon.ie</a> is a free add-on to Microsoft Outlook (2007 &amp; 2010) that removes the need to send across email attachments from MS Outlook to Google Docs.  You can work with your Google documents, spreadsheets and presentations from the Harmon.ie sidebar within MS Outlook.</p>
<p><span id="more-53545"></span><br />
But just how harmonious is this handshake between a desktop app from Microsoft and an online cloud application from its long standing rival? Let&#8217;s find out by downloading the 500KB sized installer that proceeds to download the rest of the sidebar.</p>
<p>The one worry with add-ons and sidebars within an application is that load times may increase. Doesn&#8217;t seem so with Harmon.ie, as it loads up quite smoothly and takes up a bit of Outlook&#8217;s real estate. You can hide it from view with a click. You can straightaway login with your Google account (or register a new one).</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie-01.jpg?323f2c" alt="google docs"/></p>
<h2>Work with Existing Google Docs</h2>
<p>Harmon.ie displays all the Google Docs you have on the account. If you have a large number of documents, you can use the search bar at the top or the View Bar at the bottom. The <em>View Bar</em> gives you a few view options to selectively pick and display the type of document.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie-02.jpg?323f2c" alt="sync google docs"/></p>
<p>Each file also has a small <em>Actions</em> link with document functions like renaming, hiding, staring, sharing and more. Some of the properties like a shared document, or a document that&#8217;s part of folder have small icons against their names. You can use the commands under Actions to reorganize the docs from within Outlook.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie-03.jpg?323f2c" alt="sync google docs"/></p>
<p>Sharing documents or changing the sharing options you might have set in Google Docs is easy with the <em>Share</em> command under <em>Actions</em>. Just type in the first few letters of the contact and Harmon.ie picks up the email address from the contacts database of <em>both Outlook and Gmail</em>. Specify the role and you are done.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie-04.jpg?323f2c" alt="sync google docs"/></p>
<p>Google Docs allows you convenient download in multiple formats (depending on the file type) like PDF, RTF, Text, Word, Zip, and OpenOffice etc. Harmon.ie gives the very same flexibility with its <em>Save As</em> command under <em>Actions</em>.</p>
<h2>Creating New Google Docs</h2>
<p>This is where Harmon.ie really comes to the fore. Uploading or creating new Google Docs files is as easy as a drag and drop or a click on the <em>New</em> button.</p>
<p>Pick up a document from the desktop and just drag and drop it into the Harmon.ie sidebar. The document gets automatically converted and uploaded. If you have any folders setup, you can drop the file on top of it and it&#8217;s included in the folder.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie-05.jpg?323f2c" alt="docs google"/></p>
<p>Just as you can email a Google Doc as an attachment or as a link to share it with others, Harmon.ie works with Outlook to provide the same functionality. Open a new email window (the sidebar appears in all Outlook windows) and simply drag the file from the sidebar into the email body. The file is shared with all recipients of that email automatically. Your contacts can view the document as they would normally in a browser. Just before the dispatch, you can further set permissions as view only or edit.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie-06.jpg?323f2c" alt="linked spreadsheets google docs"/></p>
<p>When you send attachments via Outlook, Harmon.ie pops up a box and asks you if you want to save the attachment in Google Docs and send the link instead. The benefit of sending a link is that you can keep the online Google Doc updated without needing to email across copies after each update. Recipients always get to view the latest version via the link.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/09/Harmonie-07.jpg?323f2c" alt="google docs"/></p>
<p>Also get under the hood of Harmon.ie by going to its <em>Options</em>. You can enable or disable a few functions there.</p>
<p>Harmon.ie does the same things that Google Docs does when you go to the cloud. But the sidebar brings along <a href="www.makeuseof.com/tags/microsoft-outlook/">MS Outlook</a> and that&#8217;s handy when you working on document sharing and document backups. Harmon.ie makes the synergy between both Google and Microsoft somehow&#8221;¦ harmonious. Would you agree?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/harmoniously-work-google-docs-microsoft-outlook/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SenderOK &#8211; A Better Email Productivity For Outlook Users</title>
		<link>http://www.makeuseof.com/tag/senderok-email-productivity-outlook-webmail-addin/</link>
		<comments>http://www.makeuseof.com/tag/senderok-email-productivity-outlook-webmail-addin/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 19:31:44 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email tips]]></category>
		<category><![CDATA[microsoft outlook]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=39680</guid>
		<description><![CDATA[For those of us who live in the inbox, email management is a 24&#215;7 job. The email inbox becomes not only the historian, who faithfully records our online social trips, but the inbox becomes the clearing house for all information that pours in. Wouldn&#8217;t it be great if it could behave like a secretary we [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK.png" /><img class="align-left" style="margin-right: 20px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK.png?323f2c" alt="" vspace="5" align="left" />For those of us who live in the inbox, email management is a 24&#215;7 job. The email inbox becomes not only the historian, who faithfully records our online social trips, but the inbox becomes the clearing house for all information that pours in. Wouldn&#8217;t it be great if it could behave like a secretary we always wished we could have?</p>
<p>With a slew of free tools and add-ons, the email is heading that way. Maybe it won&#8217;t flash a charming smile just yet, but there are some email assistants that can help us live a more charmed life and enjoy greater personal productivity. One such free email software is <strong>SenderOK</strong>.</p>
<p><span id="more-39680"></span><br />
SenderOK comes with a quiver full of features but the basic idea of the software is that it focuses on the more important emails. SenderOK tries to distinguish between the good emails and the not so good ones. Picking the good ones and putting them ahead in the queue speeds up email productivity.</p>
<p>Email productivity (or any other) is about prioritizing. SenderOK is that, but on auto-pilot. How? Let&#8217;s see&#8221;¦</p>
<h3><strong>Taking A First Look At Our Email Assistant</strong></h3>
<p><a href="http://www.senderok.com">SenderOK</a> is a 9.52MB download and it is an add-in for Outlook (2003, 2007) and the browser (IE6+, FF2+). It is supported on Windows XP, Vista, and 7. After installation, a SenderOK user account has to be created. The SenderOK account is your calling card into the network of trusted senders.</p>
<p>On installation, the SenderOK <em>Account Manager</em> takes you through screens of a few configurations. One of the most important ones is where you give SenderOK the specific email accounts to handle:</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK_1.png?323f2c" alt="email personal productivity" width="580" height="298" /></p>
<p>The last step in the installation step-by-step is where SenderOK indexes all the emails. The nice touch is, SenderOK gives a tour of the features while the indexing is on.</p>
<h3><strong>Taking a Second, Deeper Look At Our Email Assistant</strong></h3>
<ul>
<li>The first look was really slick, nice and fast. The indexing can carry on in the background and if you don&#8217;t want to view the introductory video, open up your Outlook. Here&#8217;s how the layout changes to reflect the work of SenderOK&#8217;s filtering.</li>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK_2.png?323f2c" alt="email personal productivity" width="470" height="267" /></p>
<li>SenderOK filters the emails into three priority rated folders: <strong>VIP, Important,</strong> and <strong>Routine</strong>. Also, taking each single email, the priority can be changed on a case by case basic if you feel that SenderOK has got it wrong on the first try. This action re-sorts the individual email into the matching folder.</li>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK_3.png?323f2c" alt="email personal productivity" width="580" height="126" /></p>
<li>SenderOK also helps you quickly identify senders thanks to the virtual business card displayed within the email message. The photo is plucked from Facebook and you can click the Facebook icon to take a look at the person&#8217;s profile. Obviously, not all senders will have a Facebook profile and this social information available for display.</li>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK_4.png?323f2c" alt="email productivity" width="558" height="115" /></p>
<li>The little info panel can be extended to a more detailed view with a click. What you get are all the emails you have exchanged with the sender and listed attachments if any. Mouseover any of the conversations and you can catch the email in a pop-out.</li>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK_5.png?323f2c" alt="email productivity" width="580" height="323" /></p>
<li>SenderOK also &#8220;˜rescues&#8217; email wrongly captured by spam filters and moves them from the spam folder back into the right folders. The accounts to act on can be specified during the installation.</li>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK_8.png?323f2c" alt="email productivity" width="464" height="401" /></p>
<li>SenderOK notifies you of new email and its priority status with a little taskbar icon. This icon is on display even if Outlook or webmail is closed. The type of notification display (tray icon, ticker, or sound alert) can be changed by clicking the tray icon and choosing <em>Configure SenderOK Settings</em>. Click the tray icon to get a more detailed display of your mail status.</li>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK_6.png?323f2c" alt="email management software" width="486" height="385" /></p>
<li>SenderOK lets you exchange virtual business cards with your contacts. SenderOK&#8217;s <em>Card Box</em> is where you can create and manage your own cards as well as those of your contacts. It&#8217;s also a searchable database of all your contacts with filter sets and tags.</li>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/SenderOK_7.png?323f2c" alt="email management software" width="580" height="271" /></p>
</ul>
<h3><strong>Is SenderOK A Good Email Assistant?</strong></h3>
<p>SenderOK does a good job of sorting through the mail and arranging them according to priority. Though the brain behind the sorting is not mentioned, SenderOK also takes into account global classification of the emails. If users classify a particular sender as high priority, then it apparently helps to fine tune the email classification. What&#8217;s helpful definitely is the grouping of the emails from a single sender in the info panel. Along with the photo, it speeds up email productivity.</p>
<p>The cons? I am not sure if webmail accounts also display virtual folders with sorted mails as in Outlook&#8217;s Inbox. I couldn&#8217;t get it to work and in all probability, there is this single distinction between webmail and Outlook. Though, webmail accounts display the priority for individual emails and any change in one gets reflected in all emails from that sender.</p>
<p><a href="http://www.senderok.com">SenderOK</a> can only get better at its job as we use it more. Just like a real assistant.</p>
<p>Will this software have your stamp of okay? Use it with <a href="http://www.makeuseof.com/tags/microsoft-outlook/">Outlook</a> and webmail and let us know.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/senderok-email-productivity-outlook-webmail-addin/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>6 Ways To Search For Emails In Outlook 2007</title>
		<link>http://www.makeuseof.com/tag/6-ways-search-emails-outlook-2007/</link>
		<comments>http://www.makeuseof.com/tag/6-ways-search-emails-outlook-2007/#comments</comments>
		<pubDate>Tue, 23 Mar 2010 19:31:20 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Windows Apps & Tricks]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email management]]></category>
		<category><![CDATA[email tips]]></category>
		<category><![CDATA[microsoft outlook]]></category>
		<category><![CDATA[search tips]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=38998</guid>
		<description><![CDATA[For me personally, my Outlook 2007 is a massive sink. It is where a tonnage of emails pours in and Outlook embraces them without complaint. But with so many emails sinking into a fathomless pit, sometimes Outlook turns out to be very like The Bermuda Triangle . Sometimes what goes in doesn&#8217;t come out quite [...]]]></description>
			<content:encoded><![CDATA[<p><firstimage="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/02/outlooklogo2007.jpg" /><img style="margin-right: 20px;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/02/outlooklogo2007.jpg?323f2c" alt="" vspace="5" align="left" />For me personally, my Outlook 2007 is a massive sink. It is where a tonnage of emails pours in and Outlook embraces them without complaint. But with so many emails sinking into a fathomless pit, sometimes Outlook turns out to be very like The Bermuda Triangle . Sometimes what goes in doesn&#8217;t come out quite so easily and I have to fish for it with some effort.</p>
<p>Although most of us have our folders and <a href="http://www.makeuseof.com/tag/ms-outlook-productivity-tip-how-to-move-emails-to-individual-folders-automatically/">rules to arrange all incoming emails</a> and some of us are pretty disciplined about email organization, none of us can escape the use of the search feature for emails once in a while. We had given the search capabilities of Microsoft Outlook a brief going over in <a href="http://www.makeuseof.com/tag/10-productivity-tips-for-the-quickfire-outlook-2007-user/">10 Powerful Productivity Tips &amp; Tricks For Outlook 2007</a>.</p>
<p>Mastering any search how-to has almost become the thing for surviving in the digital jungle. So I guess it wouldn&#8217;t do anyone any harm if we took a more searching look at how to get to a lost email in the clutter of our inbox.</p>
<p><span id="more-38998"></span><br />
Our search tool will be the <strong>Instant Search</strong> feature of Outlook 2007. Please note that it might not be installed by default in your client.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search.png?323f2c" alt="search for emails in outlook" width="387" height="167" /></p>
<p>In that case, it&#8217;s just a 5.8MB free <a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=55C18CB3-C916-4298-ABA3-5B98904F7CDA&amp;displaylang=en">download</a> from the Microsoft website. It is a part of <strong>Windows Search</strong>.</p>
<h3><strong>Search for Emails With Instant Search</strong></h3>
<p>The Instant Search box is the console from where you can launch all your searches. Type in your search terms and the results get instantly displayed and highlighted in the results pane. To clear away the results click on the little cross adjacent to the box.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search1.png?323f2c" alt="search for emails in outlook" width="580" height="142" /></p>
<p>To expand your search for emails, you can click on <em>All Mail Items</em>. This includes all folders (personal and archived) in the search.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search2.png?323f2c" alt="how to search for emails in outlook" width="528" height="264" /></p>
<h3><strong>Search Using Keywords</strong></h3>
<p>The search box accepts the use of keywords with specific syntaxes. The syntax, <em>keyword: your search criteria value</em> is usually followed where the keyword can be anything like <em>to, from, subject, cc, bcc</em> etc. For example, a search using <em>to: Saikat</em>, will bring up all emails sent to Saikat.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search3.png?323f2c" alt="how to search for emails in outlook" width="580" height="115" /></p>
<p>Searches can be further narrowed using operators like <em>AND, OR, &lt;, &gt;</em> etc. in a way similar to web search. But here, all the operators must be in the uppercase.</p>
<p>The official <a href="http://office.microsoft.com/en-us/outlook/HA102388311033.aspx">Outlook 2007 Help and How-to</a> post describes the different keywords you can use for quick searching.</p>
<h3><strong>Search With The Query Builder</strong></h3>
<p>If all this sounds against Windows&#8217; known user-friendliness, rest assured, this is where the handy <strong>Query Builder</strong> comes in. Click on <em>Expand the Query Builder</em> arrow just next to the Instant Search box. By default, the four more common ways to search through emails are displayed. For instance, you can search through the content of all emails using an expression called the <em>Body</em> field.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search4.png?323f2c" alt="" width="580" height="308" /></p>
<p>More keyword options are opened up with a click on <em>Add Criteria</em>. For instance, it&#8217;s very easy to filter all emails with attachments by selecting <em>Attachments </em>and then choosing <em>Yes</em> from the dropdown.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search5.png?323f2c" alt="" width="295" height="370" /></p>
<p>The Query Builder criteria fields can be combined in a search to narrow down your results. The values and the criteria used in the Query Builder also get displayed as a search query syntax, exactly the arrangement you were trying to achieve with a keyword search for emails.</p>
<h3><strong>Search Inside A Message</strong></h3>
<p>Searching inside a message works in the most obvious way. Open an email and click on <em>F4</em> or select <em>Find</em> from the Ribbon.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search6.png?323f2c" alt="" width="565" height="323" /></p>
<p>As in other Office documents, the <em>Find/Replace</em> dialog box comes up for an intra-document search.</p>
<h3><strong>Search For Related Messages</strong></h3>
<p>Open the email for which you want to find all the related messages. From the Ribbon, click on the dropdown that says <em>Related</em> and then choose <em>Related Messages</em>. If you choose the option that reads &#8220;“ <em>Messages from Sender</em>, all emails from that particular sender gets sorted.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search7.png?323f2c" alt="" width="361" height="99" /></p>
<p>You can also right click on a selected message and choose the option from the context menu.</p>
<h3><strong>Search Using Advanced Find</strong></h3>
<p>The omnipresent <em>Find</em> box may not be very impressive, but the <em>Advanced Find</em> box certainly is with its array of search options. If you want to find a needle in the haystack, head for <em>Tools &#8220;“ Instant Search &#8220;“ Advanced Find</em> (or CTRL+SHIFT+F). The Advanced Find dialog box opens up contextually, and displays the tab that&#8217;s most relevant to you. If you are in <em>Contacts</em>, the Advanced Box displays the Contacts tab.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search8.png?323f2c" alt="" width="512" height="379" /></p>
<p>The Advanced Find box has three tabs. The name of the first tab depends on where you are in Outlook and it contains the most common search options. The second tab is about <em>More Choices</em> and you can use this for more targeted searches.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search9.png?323f2c" alt="outlook search tips" width="413" height="259" /></p>
<p>The third tab is for the power users and it contains a huge number of criteria that you can define to find even a pebble in the ocean.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/03/Instant-Search10.png?323f2c" alt="" width="512" height="377" /></p>
<p>The Advanced Find dialog box is bit of overkill for a search process and in most common cases you won&#8217;t be heading there.</p>
<p>Using the more basic search functions should suffice if your personal folders are organized and unneeded emails stand deleted. But if both the former and latter get ignored, Outlook has enough tools to help you overcome those bad email habits.</p>
<p>Do you need to search for old emails frequently? How would you rate Outlook&#8217;s search features?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/6-ways-search-emails-outlook-2007/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
		<item>
		<title>How To Add Private Messages To Group Emails &amp; On Twitter</title>
		<link>http://www.makeuseof.com/tag/add-private-messages-group-emails-on-twitter/</link>
		<comments>http://www.makeuseof.com/tag/add-private-messages-group-emails-on-twitter/#comments</comments>
		<pubDate>Mon, 15 Feb 2010 01:31:32 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[Facebook & Twitter]]></category>
		<category><![CDATA[email client]]></category>
		<category><![CDATA[email tips]]></category>
		<category><![CDATA[firefox addons]]></category>
		<category><![CDATA[messaging tips]]></category>
		<category><![CDATA[microsoft outlook]]></category>
		<category><![CDATA[Twitter]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=35481</guid>
		<description><![CDATA[When you think about the privacy quandary, it is so common that we almost overlook it. In the new web, everything is open to everyone. To save time we send group or mass emails more frequently than single ones. Most of our tweets are public, broadcast to our legion of followers. The flip side is [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bccthis.png?323f2c" alt="Bccthis" vspace="5" align="left" />When you think about the privacy quandary, it is so common that we almost overlook it. In the new web, everything is open to everyone.</p>
<p>To save time we send group or mass emails more frequently than single ones. Most of our tweets are public, broadcast to our legion of followers.</p>
<p>The flip side is that we are also on the receiving end of public tweets and multiple recipient emails.</p>
<p>What if I want to send a personalized email or a private tweet to a contact? The only obvious recourse to send private messages on Twitter seems to be to compose a separate email or send a direct tweet again. The less obvious solution would be to search for an alternative method which would save us all this bother. The software development community has taken it upon themselves to make us do less.</p>
<p><span id="more-35481"></span><br />
The alternative solution presents itself as an <a href="http://www.makeuseof.com/tag/6-ways-to-get-social-with-outlook/">Outlook plug-in</a> and a Firefox add-on for Twitter.</p>
<p><a href="http://www.bccthis.com/">Bccthis</a> is a free application which lets you add a personalized message (or a Tweet) to selected recipients. Think of a Bccthis enabled message as passing a private chit to someone even while chatting to a group. Or you can even think of it as a message within a message. The best thing is that the recipient does not need to have Bccthis installed either for emails or for Tweets.</p>
<p>The official line from the developers is this &#8211; Bccthis extends the capabilities of Outlook and Twitter by creating a richer, more contextual messaging experience.</p>
<p>So, let&#8217;s carry out a few conversations on the side with&#8221;¦</p>
<h3><strong>Bccthis For Outlook</strong></h3>
<p>Bccthis for Outlook is a free plug-in that installs in Outlook and gives you another way to compose your group emails. Bccthis for Outlook is a 1.45MB sized download. The installation prompts you to install an additional (free) Microsoft component if it is not there.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bccthis01.png?323f2c" alt="private messages on twitter" width="506" height="372" /></p>
<p>The Bccthis plug-in options can be accessed from the Outlook toolbar. You can choose to enable or disable this plug-in.</p>
<p>On a new compose window, the Bccthis task pane appears as below.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bccthis02.png?323f2c" alt="private messages on twitter" width="580" height="410" /></p>
<p>The working of Bccthis for Outlook is well explained by an instructional <a href="http://www.youtube.com/watch?v=9kwqMFDbsm8&amp;feature=player_embedded">YouTube video</a>.</p>
<div style="text-align:center"><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="340" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="src" value="http://www.youtube.com/v/9kwqMFDbsm8&amp;hl=en_US&amp;fs=1&amp;" /><embed type="application/x-shockwave-flash" width="560" height="340" src="http://www.youtube.com/v/9kwqMFDbsm8&amp;hl=en_US&amp;fs=1&amp;"></embed></object></div>
<p>Just for the sake of explanation, here are the simple steps -</p>
<p>Compose your mail as you would normally do. The Bccthis for Outlook is a full featured mail editor as well. You can write your personalized message and customize it with the formatting tools. After adding the addresses in the main email, click on the <em>Select Bccthis Recipients</em> box to add the contacts who will receive your private message.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bccthis03.png?323f2c" alt="private messages on twitter" width="470" height="387" /></p>
<p>Available recipients are listed automatically from the To, CC and Bcc fields of your original email.</p>
<p>That&#8217;s it! Send the mail as you normally do. The contacts who were not selected for the private message receive a normal email. While the selected recipient&#8217;s email looks something like this (the message in the squared box is the Bccthis private message) &#8220;“</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 1px solid black;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bccthis04.png?323f2c" alt="private messages twitter" width="580" height="306" /></p>
<p>Bccthis enabled emails are also protected from an accidental Reply-all as any forward is prompted with a private message alert.</p>
<p>If you think that the Bccthis task pane is intrusive, you can customize a few settings from Bccthis <em>Options</em>. Also, the task pane can be resized or closed by clicking the little pointer on the task pane.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bccthis05.png?323f2c" alt="private messages twitter" width="443" height="183" /></p>
<p><a href="http://www.bccthis.com/bccthis/learnmore.php">Bccthis for Outlook</a> is supported on Windows XP/Vista and 7.</p>
<h3><strong>Bccthis For Twitter</strong></h3>
<p>Bccthis for Twitter is a full featured Twitter client. You can sign into the <a href="http://bccth.is/dashboard/">online service</a> with your Twitter account or download the <a href="https://addons.mozilla.org/en-US/firefox/addon/56118">Firefox addon</a>. For other browsers like IE, you can drag a bookmarklet to the toolbar.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bccthis07.png?323f2c" alt="private messages twitter" width="442" height="89" /></p>
<p>Again, the same principle applies to our Twitter habits also. Tweet as you normally do. You can now also add a private Tweet and enter the recipients to whom you want to tweet it across. The recipients receive the private message with a link back to the public tweet. All private messages remain available as a thread so you continue your conversation. Bccthis users can add other recipients to the private conversation.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/Bccthis06.png?323f2c" alt="Bccthis06" width="580" height="639" /></p>
<p>A <a href="http://www.youtube.com/watch?v=ANB8qbY4d3A&amp;feature=player_embedded">YouTube video</a> demo is provided to bolster your understanding of how Bccthis for Twitter works.</p>
<p>Bccthis fulfills a fundamental need to carry on confidential conversations bang in the middle of a micro-blogging web that&#8217;s increasingly social and public.</p>
<p>What do you think of this web application? Do you agree that Bccthis is a simple solution for a simple but real problem?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/add-private-messages-group-emails-on-twitter/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ReadPal Reader &#8211; A Tool That Helps You Focus While Reading [Windows]</title>
		<link>http://www.makeuseof.com/tag/readpal-reader-tool-helps-focus-reading-windows/</link>
		<comments>http://www.makeuseof.com/tag/readpal-reader-tool-helps-focus-reading-windows/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 18:31:39 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[documents]]></category>
		<category><![CDATA[microsoft office]]></category>
		<category><![CDATA[microsoft outlook]]></category>
		<category><![CDATA[microsoft word]]></category>
		<category><![CDATA[reading]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=34990</guid>
		<description><![CDATA[It&#8217;s very likely you don&#8217;t have an attention deficit disorder or suffer from reading disabilities. It&#8217;s very likely that you might dismiss a reading aid software out of hand. But take ReadPal out for a run through a few blocks of text and you will be pleasantly surprised. ReadPal is about a better reading experience. [...]]]></description>
			<content:encoded><![CDATA[<p><img style="border: 0px none;margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/ReadPal-Thumb.png?323f2c" alt="ReadPal-Thumb" vspace="5" align="left" />It&#8217;s very likely you don&#8217;t have an attention deficit disorder or suffer from reading disabilities. It&#8217;s very likely that you might dismiss a reading aid software out of hand. But take <strong>ReadPal</strong> out for a run through a few blocks of text and you will be pleasantly surprised. ReadPal is about a better reading experience.</p>
<p><a href="http://www.readpal.com">ReadPal</a> works with a few Microsoft applications like <em>Notepad, IE, MS Office, Outlook</em> and <em>Outlook Express</em>.</p>
<p>It presents text in a clutter-free easy to read format that helps you focus while reading . The clearer approach is helpful for those with poor eyesight and also those who have poor concentration. With the clutter-free way of ReadPal comes a better reading experience. When there are no distractions between the words on the screen and the reader, the job of going over text is faster. As ReadPal says, reading becomes 42 percent faster.</p>
<p><span id="more-34990"></span><br />
For the normal user it might be difficult to prove that it helps you focus, but we can all try to prove (or disprove) that the free reading software makes for more focused reading at least. That starts with a 1.7 MB sized download of the free version.</p>
<h3><strong>Reading With ReadPal</strong></h3>
<p>ReadPal installs as a system tray icon and launches with a compatible Microsoft application. The programs that ReadPal supports includes :</p>
<ul>
<li>Microsoft Word.</li>
<li>Microsoft Notepad.</li>
<li>MS Internet Explorer.</li>
<li>MS Outlook and MS Outlook Express.</li>
</ul>
<p>If any of the documents are active, ReadPal is displayed in the top right-hand corner of the application. Clicking on the ReadPal button opens the reading screen and a selected format.</p>
<p>A user can select from any four of the reading modes. <em>Column, Double Column, Banner</em> and <em>Sentence</em> reading are all designed around a user&#8217;s reading needs.</p>
<p>For instance, the <em>Column</em> and <em>Double Column</em> are like a newspaper. It is designed keeping in mind the span of your eyes in order to help you focus on the text.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/ReadPal-1.png?323f2c" alt="focus while reading" width="580" height="354" /></p>
<p>The <em>Banner</em> mode follows a user&#8217;s reading speed by scrolling words across the screen. The speed can be tweaked for reading at your own pace.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/ReadPal-2.png?323f2c" alt="focus while reading on pc" width="580" height="374" /></p>
<p>The <em>Sentence Mode</em> groups each sentence and presents it to the user, one at a time. Again the speed can be adjusted around one&#8217;s comfort.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/ReadPal-3.png?323f2c" alt="how to focus when reading" width="580" height="374" /></p>
<p>The last two are modes of active reading where the text is moved across the screen according to the speed settings. The active modes also come with speed settings which can be controlled on the fly with arrow keys.</p>
<p>A progress bar is like the master page turner indicating your current position and also giving you the option to skip across the content.</p>
<p>But it is the <em>Auto-skim</em> feature that really speeds up the reading. This single button function removes the unimportant words and displays the core points. It&#8217;s like shorthand for the eyes. The percentage of words that will be &#8220;˜skimmed&#8217; can be set from the settings.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/ReadPal-4.png?323f2c" alt="ReadPal-4" width="580" height="374" /></p>
<p>The comfort factor for the eyes lies in the <em>Format</em> menu. Set the font styles, the color combos and the text size to customize your reading experience and help you focus. Personally, I found the use of full screen with white text against a black background the apt choice for laser sharp focus.</p>
<p style="text-align: center;"><img class="aligncenter" style="border: 0pt none;" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/02/ReadPal-5.png?323f2c" alt="ReadPal-5" width="437" height="230" /></p>
<h3><strong>A Reader&#8217;s Opinion</strong></h3>
<p>Intuitively, I wasn&#8217;t absolutely sure about the high percentage increase in reading speed. But I am pretty sure about a more focused reading experience. Perhaps speed is a fallout of practice. ReadPal really helped me out with large blocks of text especially which have smatterings of technical words. The one problem though is that the program is limited to a few Windows applications. There&#8217;s no Firefox and no PDF.</p>
<p>But then sometimes, we can&#8217;t win &#8220;˜em all. ReadPal does win some of them with its easy layout and smooth reading.</p>
<p>What do you think? Do you really think a reading program can help you focus while reading those dull monotonous texts?</p>
<p><a href="http://www.readpal.com">ReadPal</a> ver. 2.2 is <em>free for personal use only</em> and runs on Windows XP/2000. Vista/Windows 7 support is not explicitly mentioned.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/readpal-reader-tool-helps-focus-reading-windows/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>Customize Email Signature with Random Quotes [Windows]</title>
		<link>http://www.makeuseof.com/tag/quotes-insert-random-quotes-email-signatures-windows/</link>
		<comments>http://www.makeuseof.com/tag/quotes-insert-random-quotes-email-signatures-windows/#comments</comments>
		<pubDate>Sat, 16 Jan 2010 17:31:43 +0000</pubDate>
		<dc:creator>Saikat Basu</dc:creator>
				<category><![CDATA[Cool Software Apps]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[email]]></category>
		<category><![CDATA[email signature]]></category>
		<category><![CDATA[email tips]]></category>
		<category><![CDATA[Gmail]]></category>
		<category><![CDATA[microsoft outlook]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=33394</guid>
		<description><![CDATA[There is something about random quotes that makes us pause and read them. Quotes and proverbs don&#8217;t need to condense the wisdom of the ages in a concise line. It&#8217;s not always wisdom; some adages are marked out by biting sarcasm too. But the moot truth is that it touches our thoughts or in some [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/Quotes_Thumb.png?323f2c" alt="Quotes_Thumb" vspace="5" align="left" />There is something about random quotes that makes us pause and read them. Quotes and proverbs don&#8217;t need to condense the wisdom of the ages in a concise line. It&#8217;s not always wisdom; some adages are marked out by biting sarcasm too. But the moot truth is that it touches our thoughts or in some cases&#8221;¦a nerve.</p>
<p>We, who are literary or philosophically challenged often fall back on these borrowed words to decorate everything, from a conversation to a letter. It often helps to make light a dispiriting situation &#8220;¦</p>
<p><em>&#8220;It&#8217;s a recession when your neighbor loses his job; it&#8217;s a depression when you lose yours.&#8221;</em> &#8211; Harry S Truman</p>
<p>Or to see the funnier side of love&#8221;¦</p>
<p><em>&#8220;The perfect love affair is one which is conducted entirely by post.&#8221;</em> &#8220;“ G.B Shaw</p>
<p>That&#8217;s the whole point about quotes and sayings.</p>
<p><span id="more-33394"></span><br />
Being the attention grabber that it is, it makes sense to sprinkle it into the midst of our communication. And on the net, the most common form of chatter is email.</p>
<p><strong>Quotes</strong> is a small utility which helps to us to sign off our emails with a flourish of wisdom.</p>
<p>The little tray application lets you customize email signatures with random quotes at the end. All the program settings can also be controlled via a right click on the tray icon.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/Quotes_03.png?323f2c" alt="customize email signatures" width="177" height="170" /></p>
<p>The freeware <a href="http://www.qliner.com/quotes/default.aspx">Quotes</a> fun tool supports Outlook and Windows Mail/Outlook Express.  Online email apps like Gmail or Yahoo aren&#8217;t left out. You can easily add a quote to your compose window using a hotkey. The default is <em>Win Key + Q</em> (the Win Key+hotkey combo is configurable from the settings page of the program).</p>
<p>The random quotes are retrieved by the program from an online database. Most of the settings for the program also reside online and that&#8217;s why a free sign-up is a first step. The collection of quotes is tagged and can be viewed by right clicking the icon and clicking on <em>Browse Quotes</em>.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/Quotes_02.png?323f2c" alt="customize email signatures" width="580" height="265" /></p>
<p>The user can subscribe to specific random quotes based on the tags. For instance, if you want to receive and use quotes only on &#8216;Technology&#8217; or &#8216;Friendship&#8217;, the settings page is where you select the tags and subscribe to the quotes under it.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/Quotes_04.png?323f2c" alt="Quotes_04" width="580" height="170" /></p>
<p>Each user can also contribute random quotes and help to increase the collection. Quotes can be uploaded as single quotes or as entire text files using the site&#8217;s interface. Apart from the tags, each quote is rated by the users and in the Quote Settings page, higher rated quotes can be selected for display in the mail programs. Quotes can also be marked as private and these go into a private collection of the contributor.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2010/01/Quotes_05.png?323f2c" alt="customize email signatures" width="580" height="161" /></p>
<p>There is no detailed tutorial as such but the online video explains the whole setup from start to finish. This is where a detailed instruction set would have been helpful as configuring it to run with Outlook takes a bit of trial and error. The hotkey combo of course, runs without a hitch in all mail applications. The one thing to look out for is spelling errors in some of the user contributed quotations.</p>
<p>The little app may not be dramatically useful in a lot of ways except perhaps bumping up the fun quotient of your emails. In the end it&#8217;s really a fun tool that makes an email a bit more interesting.</p>
<p><a href="http://www.qliner.com/quotes/default.aspx">Quotes</a> is a 537KB free download and is supported on Windows XP and Vista.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/quotes-insert-random-quotes-email-signatures-windows/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Never Forget Your Facebook Friend&#8217;s Birthday with fbCal</title>
		<link>http://www.makeuseof.com/tag/never-forget-your-facebook-friends-birthday-social-events-with-fbcal/</link>
		<comments>http://www.makeuseof.com/tag/never-forget-your-facebook-friends-birthday-social-events-with-fbcal/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 16:01:04 +0000</pubDate>
		<dc:creator>Jeffry Thurana</dc:creator>
				<category><![CDATA[Facebook & Twitter]]></category>
		<category><![CDATA[Web Apps & Internet]]></category>
		<category><![CDATA[calendar]]></category>
		<category><![CDATA[events]]></category>
		<category><![CDATA[Facebook]]></category>
		<category><![CDATA[friends]]></category>
		<category><![CDATA[google calendar]]></category>
		<category><![CDATA[iCal]]></category>
		<category><![CDATA[microsoft outlook]]></category>
		<category><![CDATA[notifications]]></category>

		<guid isPermaLink="false">http://www.makeuseof.com/?p=29702</guid>
		<description><![CDATA[In this digital era, every part of human life which can be digitized has been digitized. From work documents to personal conversations, everything can be transferred into bits and bytes. Even social communities are moving into the virtual territories. Facebook is one of those e-areas. The millions of Facebook users around the world is the [...]]]></description>
			<content:encoded><![CDATA[<p><img style="margin-right:20px" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/00-fbCal.com-logo.jpg?323f2c" border="0" alt="00 fbCal.com logo.jpg" vspace="5" align="left" />In this digital era, every part of human life which can be digitized has been digitized. From work documents to personal conversations, everything can be transferred into bits and bytes. Even social communities are moving into the virtual territories.</p>
<p>Facebook is one of those e-areas. The millions of Facebook users around the world is the proof that we could never leave our basic behavior as social beings. Facebook members are meeting their old school friends, getting new friends, organizing social events, and doing things that people from ten years ago never thought possible like getting supporters for political campaigns.</p>
<h3><strong>Converting Facebook Events &amp; Birthday Notifications Into A Birthday Reminder Calendar<br />
</strong></h3>
<p>I&#8217;m not much of a Facebook user as most of my friends are. I don&#8217;t update my status each and every minute. Sometimes there are days (or weeks) between my logins. My account is just a place for me to meet old friends and say hi once in a while.</p>
<p>As a person who keeps forgetting everybody&#8217;s birthday, one Facebook feature that I found really useful is the birthday notifications. But I can&#8217;t make full use of this feature because it&#8217;s only available online.</p>
<p>Luckily, there&#8217;s <a href="http://www.fbcal.com/">fbCal</a>. This is a Facebook birthday reminder calendar that will turn Facebook&#8217;s events and birthday notifications into a calendar you can subscribe to, accessible from popular calendar applications like iCal, Outlook, Sunbird and GCal.</p>
<p><span id="more-29702"></span><br />
The first step to using the fbCal a birthday reminder calendar is by going to its site and clicking &#8220;<em>Get Your Calendars Now</em>&#8221; button.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/01-fbCal.com-Get-Calendars.jpg?323f2c" border="0" alt="birthday reminder facebook" width="417" height="72" /></p>
<p>You will be brought to your Facebook account. You have to log in before the fbCal access verification appears. Click &#8220;<em>Allow</em>&#8221; to give access to fbCal to access the required information from within your account.</p>
<p style="text-align: center;"><img class="aligncenter" style="border:1px solid black" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/02-fbCal-Allow-Acces.jpg?323f2c" border="0" alt="birthday reminder facebook" width="550" height="205" /></p>
<p>If you feel uncomfortable having your personal information accessed by a third party application, then do not use this service.</p>
<p>Then comes the second confirmation step. You also have to allow fbCal to access your information even while you are not using the application, or &#8220;<em>Offline Access</em>&#8220;. It needs this authorization to be able to keep updating you with the data when you are not logged in to your Facebook account.</p>
<p style="text-align: center;"><img class="aligncenter" style="border:1px solid black" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/02b-fbCal-allow-offline-access.jpg?323f2c" border="0" alt=", birthday reminder for pc mac" width="445" height="160" /></p>
<h3><strong>Subscribing To The Calendar</strong></h3>
<p>After the conversion, you can continue with the subscription process. There are two kind of calendars to subscribe to:</p>
<p><strong>Events calendar</strong></p>
<p style="text-align: center;"><img class="aligncenter" style="border:1px solid black" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/03a-fbCal-Facebook-events.jpg?323f2c" border="0" alt="03a fbCal - Facebook events.jpg" width="334" height="255" /></p>
<p>And <strong>friends&#8217; birthday calendar</strong>.</p>
<p style="text-align: center;"><img class="aligncenter" style="border:1px solid black" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/03b-fbCal-Facebook-birthday.jpg?323f2c" border="0" alt="03b fbCal - Facebook birthday.jpg" width="331" height="266" /></p>
<p>Choose one of the applications that you want to use to import the calendar. Since I&#8217;m a Mac user, I chose iCal as the example throughout this article. The process is more or less similar for both birthday and event calendars, and under other applications.</p>
<p>I clicked iCal and a small window popped out asking me to choose which application I want to use to open the calendar. Duh.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/04-fbCal-Launch-Application.png?323f2c" border="0" alt="04 fbCal - Launch Application.png" width="373" height="389" /></p>
<p>After clicking &#8220;<em>OK</em>&#8221; iCal is launched. It asked the URL of the calendar to subscribe to. The field is already filled automatically by fbCal.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/04b-fbCal-iCal-subscribe-1.png?323f2c" border="0" alt="04b fbCal - iCal subscribe-1.png" width="550" height="171" /></p>
<p>I clicked &#8220;<em>Subscribe</em>&#8221; and waited until the subscribing process finished.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/04c-fbCal-iCal-subscribe-progress.png?323f2c" border="0" alt="04c fbCal - iCal subscribe - progress.png" width="547" height="166" /></p>
<p>A calendar info window appeared. There are several things that could be customized here, such as the calendar&#8217;s color and the refresh rate.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/04d-iCal-subscribe-confirm.png?323f2c" border="0" alt="04d iCal subscribe - confirm.png" width="536" height="366" /></p>
<p>I chose &#8220;<em>No</em>&#8221; for the Auto-refresh option because I don&#8217;t think my friends&#8217; birthday will change often <img src="http://main.makeuseoflimited.netdna-cdn.com/wp-includes/images/smilies/icon_smile.gif?323f2c" alt=':)' class='wp-smiley' /> . But if you are the kind of Facebook user whose friends list is expanding on a regular basis, or if you are subscribing to event calendars, this setting should be set to a time interval. The available options are: every 5 minutes, every 15 minutes, every hour, every day and every week.</p>
<p>After using fbCal to fetch the list of my friends&#8217; birthday from Facebook, my once &#8220;quiet&#8221; iCal</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/05a-fbCal-iCal-calendar-without-birthdays.png?323f2c" border="0" alt="05a fbCal - iCal calendar without birthdays.png" width="550" height="345" /></p>
<p>has turned into a merry place full with parties.</p>
<p style="text-align: center;"><img class="aligncenter" src="http://main.makeuseoflimited.netdna-cdn.com/wp-content/uploads/2009/11/05b-iCal-display-with-birthdays.png?323f2c" border="0" alt="05b iCal display with birthdays.png" width="550" height="345" /></p>
<p>And I will never forget my friends&#8217; birthday again, nor will I miss my (Facebook) social events, because these calendars will be synchronized to my mobile and available anytime and anywhere.</p>
<p>How do you keep track of your friends&#8217; birthday? Have you tried fbCal? Do you know alternative birthday reminders for Facebook? Please share using the comments below. Oh and don&#8217;t forget to check out <a href="http://www.makeuseof.com/tags/facebook/">other Facebook articles</a> from MakeUseOf.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.makeuseof.com/tag/never-forget-your-facebook-friends-birthday-social-events-with-fbcal/feed/</wfw:commentRss>
		<slash:comments>8</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/40 queries in 0.057 seconds using apc
Object Caching 776/858 objects using disk: basic
Content Delivery Network via main.makeuseoflimited.netdna-cdn.com

Served from: www.makeuseof.com @ 2012-02-10 22:23:50 -->
