<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://blogs.technet.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>Confessions of a Microsoft Consultant : Office</title><link>http://blogs.technet.com/doxley/archive/tags/Office/default.aspx</link><description>Tags: Office</description><dc:language>en-US</dc:language><generator>CommunityServer 2.1 SP1 (Build: 61025.2)</generator><item><title>Office 2003 being put to bed</title><link>http://blogs.technet.com/doxley/archive/2009/04/16/office-2003-being-put-to-bed.aspx</link><pubDate>Thu, 16 Apr 2009 17:38:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3227214</guid><dc:creator>Daniel Oxley</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/doxley/comments/3227214.aspx</comments><wfw:commentRss>http://blogs.technet.com/doxley/commentrss.aspx?PostID=3227214</wfw:commentRss><description>&lt;P&gt;Just a quick reminder to everyone that mainstream support for Microsoft Office 2003 ended on April 14th 2009, extended support will be available however until the 14th of January 2014.&amp;nbsp; You can get more information from the following&amp;nbsp;two pages:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;&lt;A href="http://support.microsoft.com/lifecycle/?p1=2488" mce_href="http://support.microsoft.com/lifecycle/?p1=2488"&gt;Microsoft Office Support Lifecycle&lt;/A&gt;&lt;/LI&gt;
&lt;LI&gt;&lt;A href="http://office.microsoft.com/en-us/products/HA102294401033.aspx" mce_href="http://office.microsoft.com/en-us/products/HA102294401033.aspx"&gt;Microsoft Office 2003 Frequently Asked Questions&lt;/A&gt;&lt;/LI&gt;&lt;/UL&gt;
&lt;P&gt;On a similar note, Service Pack 2 for Microsoft Office 2007 is scheduled for release on the 28th of April 2009, more information is available &lt;A href="http://blogs.technet.com/office_sustained_engineering/archive/2009/04/16/service-pack-2-for-the-2007-microsoft-office-system-due-to-ship-april-28th.aspx" mce_href="http://blogs.technet.com/office_sustained_engineering/archive/2009/04/16/service-pack-2-for-the-2007-microsoft-office-system-due-to-ship-april-28th.aspx"&gt;here&lt;/A&gt;.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3227214" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/doxley/archive/tags/Office/default.aspx">Office</category></item><item><title>Job/Life/Reputation protector 2.0</title><link>http://blogs.technet.com/doxley/archive/2008/11/10/job-life-reputation-protector-2-0.aspx</link><pubDate>Mon, 10 Nov 2008 14:58:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3150390</guid><dc:creator>Daniel Oxley</dc:creator><slash:comments>4</slash:comments><comments>http://blogs.technet.com/doxley/comments/3150390.aspx</comments><wfw:commentRss>http://blogs.technet.com/doxley/commentrss.aspx?PostID=3150390</wfw:commentRss><description>&lt;P&gt;Back in January I &lt;A href="http://blogs.technet.com/doxley/archive/2008/01/23/gulp-did-i-really-just-send-that-to-the-entire-company.aspx" mce_href="http://blogs.technet.com/doxley/archive/2008/01/23/gulp-did-i-really-just-send-that-to-the-entire-company.aspx"&gt;posted&lt;/A&gt; some simple VBA code for adding an “are you sure?” type question to the Reply To All button in Outlook.&amp;nbsp; Since then I have received a few suggestions for improving the code, one of the most common of which was to add to the question box the list of names that the mail will be sent to.&amp;nbsp; So, as requested, you can find below the updated code!&amp;nbsp; &lt;/P&gt;
&lt;P align=center&gt;&lt;A href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Jobsaver2_B12E/image_6.png" mce_href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Jobsaver2_B12E/image_6.png"&gt;&lt;IMG title=image style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=236 alt=image src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Jobsaver2_B12E/image_thumb_2.png" width=484 border=0 mce_src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Jobsaver2_B12E/image_thumb_2.png"&gt;&lt;/A&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Just place this code in a module in Outlook (you can get to the VBA editor by pressing ALT+F11) and then assign it a button on the toolbar:&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;&lt;BR&gt;Sub ReplyToAllGuard()&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; On Error GoTo ReplyAllErr&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim myOlApp As Outlook.Application&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim myFolder As Outlook.MAPIFolder&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim myItem As Outlook.MailItem&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim ReplyMail&amp;nbsp; As Outlook.MailItem&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim i As Integer&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set myOlApp = Application&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set myFolder = myOlApp.ActiveExplorer.CurrentFolder&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; iCount = myOlApp.ActiveExplorer.Selection.Count&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; For i = 1 To iCount&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set myItem = myOlApp.ActiveExplorer.Selection.Item(1)&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set ReplyMail = myItem.ReplyAll&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next i&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim mymsg As String&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim strRecipients As String&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim ReplyQ As Integer&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; For Each strRec In ReplyMail.Recipients&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; strRecipients = strRecipients &amp;amp; strRec &amp;amp; Chr(13)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; mymsg = "You just clicked Reply to All.&amp;nbsp; Are you sure that this is what you want to do?&amp;nbsp; The following recipients will receive this mail:" &amp;amp; _&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Chr(13) &amp;amp; Chr(13) &amp;amp; strRecipients&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ReplyQ = MsgBox(mymsg, vbYesNo, "Job/Life/Reputation protector")&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If ReplyQ = vbNo Then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set ReplyMail = Nothing&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Sub&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; myItem.UnRead = False&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ReplyMail.Display&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;
&lt;P&gt;ReplyAllErr:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; If Err.Number = -2147467259 Then&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MsgBox "The sender has prevented you from being able to reply to all recipients.", vbOKOnly, "Job/Life/Reputation protector"&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Sub&lt;/P&gt;
&lt;P&gt;End Sub&lt;BR&gt;&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;I also made one another change to the code in order to prevent receiving the error “A program is trying to access e-mail address information stored in Outlook”.&amp;nbsp; This error is generated because Outlook has detected a possible security risk because some ‘unknown’ VBA code is trying to harvest the e-mail addresses from an e-mail; in this case though, we actually want it to!&lt;/P&gt;
&lt;P align=center&gt;&amp;nbsp;&lt;A href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Jobsaver2_B12E/image_4.png" mce_href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Jobsaver2_B12E/image_4.png"&gt;&lt;IMG title=image style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px" height=184 alt=image src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Jobsaver2_B12E/image_thumb_1.png" width=365 border=0 mce_src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Jobsaver2_B12E/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Basically, instead of initiating a new Outlook session in memory, the code now reuses the existing instance of Outlook, thereby not generating a security problem as the message box is suggesting.&lt;/P&gt;
&lt;P mce_keep="true"&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Edit: I amended the code to fix an oversight by me where the code did not clean up after itself!&amp;nbsp; Also, the mail now marks itself as read after&amp;nbsp;you reply&amp;nbsp;- Thanks JP for pointing it out.&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3150390" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/doxley/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://blogs.technet.com/doxley/archive/tags/Office/default.aspx">Office</category><category domain="http://blogs.technet.com/doxley/archive/tags/VBA/default.aspx">VBA</category><category domain="http://blogs.technet.com/doxley/archive/tags/Security/default.aspx">Security</category><category domain="http://blogs.technet.com/doxley/archive/tags/Misc/default.aspx">Misc</category><category domain="http://blogs.technet.com/doxley/archive/tags/Tips/default.aspx">Tips</category></item><item><title>Just leave me alone! (for another 6 minutes and 52 seconds anyway)</title><link>http://blogs.technet.com/doxley/archive/2008/08/21/just-leave-me-alone-for-another-6-minutes-and-52-seconds-anyway.aspx</link><pubDate>Thu, 21 Aug 2008 11:00:26 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3109521</guid><dc:creator>Daniel Oxley</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/doxley/comments/3109521.aspx</comments><wfw:commentRss>http://blogs.technet.com/doxley/commentrss.aspx?PostID=3109521</wfw:commentRss><description>&lt;p&gt;Ever get that feeling where you can't get anything done because the arrival of new e-mail keeps breaking your train of thought?&amp;#160; Just as you get something clear in your head, the Outlook notifier pops up to tell you that you have a new email.&amp;#160; Then, when you go check what the e-mail is, you see that it is not important and that what you previously had in your head is now gone.&amp;#160; The solution for me was always to close Outlook until I had finished what I was trying to concentrate on, but the downside of this &amp;quot;solution&amp;quot; though is that I would often forget to re-open Outlook when I had finished meaning that I would never be reminded about any meetings, or that I would miss the arrival any important e-mails that needed immediate attention.&lt;/p&gt;  &lt;p&gt;Well, fret no more!&amp;#160; The Office Labs team has invented a Do Not Disturb button for Outlook!&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/emailprioritizer_D4FB/image_2.png"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="30" alt="image" src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/emailprioritizer_D4FB/image_thumb.png" width="578" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Just select the amount of time that you don't want to be disturbed for, configure the priorities (if required), then press &amp;quot;Turn on Do Not Disturb&amp;quot;; it couldn't be simpler!&amp;#160; Once activated, Outlook will temporarily pause it's checking for new e-mails on your Exchange server until the time you selected has expired.&amp;#160; It can also prioritise your mails based on criteria that you can set, for example based on who the e-mail is from.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;One feature that I think is pretty useful is that you can add a pause in your e-mail until the current meeting that you are in has finished (based on the appointments in your calendar).&amp;#160; Nowadays people often take their laptops into meetings with them as it is a useful tool to take notes on, access documents or give presentations.&amp;#160; However, if I am sitting with someone in a meeting room, I sometimes find it irritating when they stop talking mid-sentence in order to respond to an e-mail that they have just received.&amp;#160; Also, if you are giving a presentation on your laptop via a projector, you can enable this option so that the Outlook notifier won't be telling every single person who is viewing the projector what your new e-mails are.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/emailprioritizer_D4FB/image_4.png"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="137" alt="image" src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/emailprioritizer_D4FB/image_thumb_1.png" width="579" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Get get it here: &lt;a title="http://www.officelabs.com/projects/emailprioritizer/Pages/default.aspx" href="http://www.officelabs.com/projects/emailprioritizer/Pages/default.aspx"&gt;http://www.officelabs.com/projects/emailprioritizer/Pages/default.aspx&lt;/a&gt;.&amp;#160; The program only works with Office 2007 at the moment, so you might want to check out the &lt;a href="http://www.officelabs.com/projects/emailprioritizer/Pages/FAQ.aspx"&gt;FAQ&lt;/a&gt; before you download and install it.&amp;#160; Enjoy!&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3109521" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/doxley/archive/tags/Office/default.aspx">Office</category></item><item><title>Closing time for the bar</title><link>http://blogs.technet.com/doxley/archive/2008/07/08/closing-time-for-the-bar.aspx</link><pubDate>Tue, 08 Jul 2008 17:27:07 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3085553</guid><dc:creator>Daniel Oxley</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/doxley/comments/3085553.aspx</comments><wfw:commentRss>http://blogs.technet.com/doxley/commentrss.aspx?PostID=3085553</wfw:commentRss><description>&lt;p&gt;If you run Outlook 2007 on a Windows Server 2008 machine, then you may have noticed that your Outlook persistently shows that little yellow bar saying &amp;quot;Click here to enable Instant Search&amp;quot;.&amp;#160; Unfortunately, clicking on the bar does not enable Instant Search because the Operating System services are not installed by default in Windows Server 2008. &lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/loosingthesearchbarinoutlook_E0E4/image_2.png"&gt;&lt;img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="83" alt="image" src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/loosingthesearchbarinoutlook_E0E4/image_thumb.png" width="748" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Now, you could go and install and enable all those services in order to have the Instant Search in Outlook, but if you are like me then you don't really want it because it is not a feature you especially use.&amp;#160; I find the 'normal' search functionality to be more than adequate for me, but then I am not an Outlook power user that requires anything more.&amp;#160; So, if you don't enable the extra OS services then you are stuck with that annoying bar...&amp;#160; Or at least so I thought until I noticed a well-hidden option to remove it.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Just choose Options from the Tools menu, go to the Other tab and press the Advanced Options button.&amp;#160; You'll get a new window appear, as the one shown below, which will allow you to uncheck the box next to &amp;quot;Show prompts to enable Instant Search&amp;quot;.&lt;/p&gt;  &lt;p&gt;&lt;a href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/loosingthesearchbarinoutlook_E0E4/image4.png"&gt;&lt;img style="border-right: 0px; border-top: 0px; border-left: 0px; border-bottom: 0px" height="634" alt="image" src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/loosingthesearchbarinoutlook_E0E4/image4_thumb.png" width="458" border="0" /&gt;&lt;/a&gt; &lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;Why was this option not included in the message that appears when you click on the yellow bar?&amp;#160; Would it not be friendlier to say something like &amp;quot;Click *here* to enable Instant Search, or click *here* to remove this reminder&amp;quot;?&amp;#160; That yellow bar used to drive me nuts as it was wasting space on my screen and I knew of no way to get rid of it!&lt;/p&gt;  &lt;p&gt;Oh well, at least it is gone now.&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3085553" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/doxley/archive/tags/Windows/default.aspx">Windows</category><category domain="http://blogs.technet.com/doxley/archive/tags/Office/default.aspx">Office</category><category domain="http://blogs.technet.com/doxley/archive/tags/Server+2008/default.aspx">Server 2008</category></item><item><title>Unravelling the Office Ribbon</title><link>http://blogs.technet.com/doxley/archive/2008/04/30/scout-is-out.aspx</link><pubDate>Wed, 30 Apr 2008 01:31:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3047207</guid><dc:creator>Daniel Oxley</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/doxley/comments/3047207.aspx</comments><wfw:commentRss>http://blogs.technet.com/doxley/commentrss.aspx?PostID=3047207</wfw:commentRss><description>&lt;P&gt;At last!&amp;nbsp; Microsoft has made public the super useful Search Commands tool for Microsoft Office 2007!&amp;nbsp; It has been an internal dogfood tool for a pretty long time now and I find it invaluable.&amp;nbsp; Basically, it adds an extra tab to the Office ribbon called "Search" from which you can search for a command rather than hunt around for it in the ribbon.&amp;nbsp; This tool is great for people who are lost with the change from Office 2003 to Office 2007 and spend far too much time roaming around the ribbon tabs looking for the button that will insert a footnote into their document!&lt;/P&gt;
&lt;P&gt;Just go to the new tab, type "footnote" in the search box and it will display the relevant results on the toolbar, along with the information about where the button has been moved to! &lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Scoutisout_393/image_2.png" mce_href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Scoutisout_393/image_2.png"&gt;&lt;IMG style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px" height=81 alt=image src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Scoutisout_393/image_thumb.png" width=623 border=0 mce_src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Scoutisout_393/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Go get it here: &lt;A title=http://www.officelabs.com/projects/searchcommands/Pages/default.aspx href="http://www.officelabs.com/projects/searchcommands/Pages/default.aspx" mce_href="http://www.officelabs.com/projects/searchcommands/Pages/default.aspx"&gt;http://www.officelabs.com/projects/searchcommands/Pages/default.aspx&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3047207" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/doxley/archive/tags/Office/default.aspx">Office</category></item><item><title>Office 2007 - Cool "Getting Started" stuff</title><link>http://blogs.technet.com/doxley/archive/2008/03/19/office-2007-cool-getting-started-stuff.aspx</link><pubDate>Wed, 19 Mar 2008 15:29:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:3015067</guid><dc:creator>Daniel Oxley</dc:creator><slash:comments>0</slash:comments><comments>http://blogs.technet.com/doxley/comments/3015067.aspx</comments><wfw:commentRss>http://blogs.technet.com/doxley/commentrss.aspx?PostID=3015067</wfw:commentRss><description>&lt;P&gt;I've just seen that some excellent add-ins are available for Office 2007 to help you get familiar with the new interface and all the great new features crammed inside, and best of all they are totally free!&amp;nbsp; They work by adding an extra tab to the Office Ribbon called "Get Started" and they include things like an interactive guide, videos, demos, assisted help, and links to the Office page on &lt;A href="http://www.microsoft.com/" mce_href="http://www.microsoft.com"&gt;www.microsoft.com&lt;/A&gt;.&amp;nbsp; I have included some screenshots below, along with the download links.&lt;/P&gt;
&lt;P&gt;Unfortunately, they have not been localised (as far as I can tell) so English is the only installable language.&lt;/P&gt;
&lt;H1&gt;Word&lt;/H1&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_4.png" mce_href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_4.png"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=168 alt=image src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_thumb_1.png" width=692 border=0 mce_src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_thumb_1.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H1&gt;Excel&lt;/H1&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_6.png" mce_href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_6.png"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=178 alt=image src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_thumb_2.png" width=692 border=0 mce_src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_thumb_2.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;H1&gt;PowerPoint&lt;/H1&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_8.png" mce_href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_8.png"&gt;&lt;IMG style="BORDER-RIGHT: 0px; BORDER-TOP: 0px; BORDER-LEFT: 0px; BORDER-BOTTOM: 0px" height=173 alt=image src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_thumb_3.png" width=697 border=0 mce_src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/Office2007GettingStarted_FB81/image_thumb_3.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;Downloads:&lt;/P&gt;
&lt;P&gt;Word: &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F587370C-FDAE-4EDE-B528-AC58031A5DFF&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=F587370C-FDAE-4EDE-B528-AC58031A5DFF&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=F587370C-FDAE-4EDE-B528-AC58031A5DFF&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;Excel: &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=8A5AF9D7-08A7-41BA-8844-76BB94228957&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=8A5AF9D7-08A7-41BA-8844-76BB94228957&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=8A5AF9D7-08A7-41BA-8844-76BB94228957&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;PowerPoint: &lt;A href="http://www.microsoft.com/downloads/details.aspx?FamilyId=831F0AE9-FC50-4074-96D3-D02FD98CB041&amp;amp;displaylang=en" mce_href="http://www.microsoft.com/downloads/details.aspx?FamilyId=831F0AE9-FC50-4074-96D3-D02FD98CB041&amp;amp;displaylang=en"&gt;http://www.microsoft.com/downloads/details.aspx?FamilyId=831F0AE9-FC50-4074-96D3-D02FD98CB041&amp;amp;displaylang=en&lt;/A&gt;&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=3015067" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/doxley/archive/tags/Office/default.aspx">Office</category></item><item><title>Gulp! Did I really just send that to the entire company...?</title><link>http://blogs.technet.com/doxley/archive/2008/01/23/gulp-did-i-really-just-send-that-to-the-entire-company.aspx</link><pubDate>Wed, 23 Jan 2008 13:47:00 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2772215</guid><dc:creator>Daniel Oxley</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/doxley/comments/2772215.aspx</comments><wfw:commentRss>http://blogs.technet.com/doxley/commentrss.aspx?PostID=2772215</wfw:commentRss><description>&lt;P&gt;I am sure that it has happened to everyone in some way or another.&amp;nbsp; You receive an e-mail from a colleague and decide to reply with some harmless comment/joke/snide remark/insult/opinion* but without realising that you pressed the 'Reply To All' button, nor realising that HR and/or your boss were copied on the e-mail as well.&amp;nbsp; Now you are thinking 'Oh dear' and a way to explain it all away as harmless and inconsequential; sound familiar?&amp;nbsp; Well look no further as you can prevent it from ever happening again with just a few lines of code!&lt;/P&gt;
&lt;P&gt;You can use the following VBA code in a module in Outlook (only tested in Outlook 2007) to request confirmation from you before using the 'Reply To All' button.&lt;/P&gt;
&lt;BLOCKQUOTE&gt;
&lt;P&gt;Sub ReplyToAllGuard() &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim mymsg As String &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim ReplyQ As Integer &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; mymsg = "You just clicked Reply to All.&amp;nbsp; Are you sure that this is what you want to do?" &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ReplyQ = MsgBox(mymsg, vbYesNo, "Job/Life/Reputation protector") &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; If ReplyQ = vbNo Then &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Exit Sub &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Else &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim myOlApp As Outlook.Application &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim myFolder As Outlook.MAPIFolder &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim myItem As Outlook.MailItem &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim ReplyMail&amp;nbsp; As Outlook.MailItem &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Dim i As Integer &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set myOlApp = CreateObject("Outlook.Application") &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set myFolder = myOlApp.ActiveExplorer.CurrentFolder &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; iCount = myOlApp.ActiveExplorer.Selection.Count &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; For i = 1 To iCount &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set myItem = myOlApp.ActiveExplorer.Selection.item(1) &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Set ReplyMail = myItem.ReplyAll &lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ReplyMail.Display &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; Next i &lt;BR&gt;&lt;BR&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; End If &lt;/P&gt;
&lt;P&gt;End Sub&lt;/P&gt;&lt;/BLOCKQUOTE&gt;
&lt;P mce_keep="true"&gt;Just create a new button on your toolbar (see the snapshot of my toolbar below) and link it to the code that you have added to your module.&amp;nbsp; IIRC, there is also some code somewhere in the help files of Office that does a similar thing, but I could not find it quickly and the above code only took 2 minutes to write.&lt;/P&gt;
&lt;P&gt;&lt;A href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/GulpDidIreallyjustsendthattotheentireco_8D29/image_2.png" mce_href="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/GulpDidIreallyjustsendthattotheentireco_8D29/image_2.png"&gt;&lt;IMG style="BORDER-TOP-WIDTH: 0px; BORDER-LEFT-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; BORDER-RIGHT-WIDTH: 0px" height=30 alt=image src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/GulpDidIreallyjustsendthattotheentireco_8D29/image_thumb.png" width=264 border=0 mce_src="http://blogs.technet.com/blogfiles/doxley/WindowsLiveWriter/GulpDidIreallyjustsendthattotheentireco_8D29/image_thumb.png"&gt;&lt;/A&gt; &lt;/P&gt;
&lt;P&gt;* delete as applicable&lt;/P&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=2772215" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/doxley/archive/tags/Scripting/default.aspx">Scripting</category><category domain="http://blogs.technet.com/doxley/archive/tags/Office/default.aspx">Office</category><category domain="http://blogs.technet.com/doxley/archive/tags/VBA/default.aspx">VBA</category></item><item><title>Free Office 2007 training!</title><link>http://blogs.technet.com/doxley/archive/2008/01/18/free-office-2007-training.aspx</link><pubDate>Fri, 18 Jan 2008 13:25:06 GMT</pubDate><guid isPermaLink="false">d5e57398-b9ef-4490-9955-07cbb4e4a80d:2756072</guid><dc:creator>Daniel Oxley</dc:creator><slash:comments>1</slash:comments><comments>http://blogs.technet.com/doxley/comments/2756072.aspx</comments><wfw:commentRss>http://blogs.technet.com/doxley/commentrss.aspx?PostID=2756072</wfw:commentRss><description>&lt;p&gt;I am working on a project to deploy Windows Vista and Office 2007 at the moment in a large bank.&amp;#160; The client is concerned that once the rollout commences all hell will break loose because his users will not be able to find anything in Office 20007 because of the new UI and the Ribbon (In his words.&amp;#160; I actually find the Ribbon to be quite intuitive).&amp;#160; So, he asked me if we had &lt;u&gt;free&lt;/u&gt; training resources available that he can start to use with all his staff to try and make the transition as smooth as possible.&amp;#160; I'd said that I'd look into it but I suspected that there was nothing that was detailed enough for him without any cost.&amp;#160; Then a couple of hours later I saw a blog post by &lt;a href="http://blogs.technet.com/daven/archive/2008/01/17/great-office-2007-materials-free-training.aspx"&gt;Dave Northey&lt;/a&gt; that provided links to an abundance of free Office 2007 training!&amp;#160; Perfect!&lt;/p&gt;  &lt;p&gt;I've reproduced all the links here, plus a link to the original post.&lt;/p&gt;  &lt;p&gt;&amp;#160;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Web-based interactive command reference guides &lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA100744321033&amp;amp;QueryID=nv9Cdx5w80&amp;amp;respos=1&amp;amp;rt=3&amp;amp;pid=CH100487431033"&gt;Interactive: Word 2003 to Word 2007 command reference guide&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA101490761033&amp;amp;QueryID=nv9Cdx5w80&amp;amp;respos=2&amp;amp;rt=3&amp;amp;pid=CH100668131033"&gt;Interactive: PowerPoint 2003 to PowerPoint 2007 command reference guide&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA101491511033&amp;amp;QueryID=nv9Cdx5w80&amp;amp;respos=3&amp;amp;rt=3&amp;amp;pid=CH100648241033"&gt;Interactive: Excel 2003 to Excel 2007 command reference guide&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA102221621033&amp;amp;QueryID=nv9Cdx5w80&amp;amp;respos=12&amp;amp;rt=2&amp;amp;pid=CH100622221033"&gt;Interactive: Outlook 2003 to Outlook 2007 command reference guide&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA102388991033&amp;amp;QueryID=Q1iCK5-ka&amp;amp;respos=4&amp;amp;rt=2&amp;amp;pid=CH100621861033"&gt;Interactive: Access 2003 to Access 2007 command reference guide&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Training courses &lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=RC101153581033&amp;amp;QueryID=sv9CclHPO&amp;amp;respos=1&amp;amp;rt=2&amp;amp;pid=CR100654581033"&gt;Up to speed with Outlook 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=RC101933201033&amp;amp;QueryID=sv9CclHPO&amp;amp;respos=2&amp;amp;rt=2&amp;amp;pid=CR101582831033"&gt;Up to speed with Access 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=RC100620751033&amp;amp;QueryID=sv9CclHPO&amp;amp;respos=3&amp;amp;rt=2&amp;amp;pid=CR100479681033"&gt;Up to speed with Excel 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=RC100664431033&amp;amp;QueryID=sv9CclHPO&amp;amp;respos=4&amp;amp;rt=2&amp;amp;pid=CR100654561033"&gt;Up to speed with Word 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=RC101482291033&amp;amp;QueryID=sv9CclHPO&amp;amp;respos=5&amp;amp;rt=2"&gt;Up to speed with the 2007 Office system&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=RC100687671033&amp;amp;QueryID=sv9CclHPO&amp;amp;respos=6&amp;amp;rt=2&amp;amp;pid=CR100654571033"&gt;Up to speed with PowerPoint 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Videos &lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA100518161033&amp;amp;QueryID=uv9C6K--C&amp;amp;respos=5&amp;amp;rt=2&amp;amp;pid=CH101535021033"&gt;Demo: Up to speed with Outlook 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA102002991033&amp;amp;QueryID=uv9C6K--C&amp;amp;respos=10&amp;amp;rt=2&amp;amp;pid=CH100739911033"&gt;Demo: Up to speed with Access 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA100484501033&amp;amp;QueryID=uv9C6K--C&amp;amp;respos=20&amp;amp;rt=2&amp;amp;pid=CH101030621033"&gt;Demo: Up to speed with Excel 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA100484621033&amp;amp;QueryID=uv9C6K--C&amp;amp;respos=21&amp;amp;rt=2&amp;amp;pid=CH101030561033"&gt;Demo: Up to speed with PowerPoint 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;a href="http://office.microsoft.com/en-us/word/HA100484691033.aspx"&gt;&lt;b&gt;Demo: Up to speed with Word 2007 &lt;/b&gt;&lt;/a&gt;&lt;b&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;Full lists of 2003-2007 command equivalents &lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA100625841033&amp;amp;QueryID=pv9CUsonb0&amp;amp;respos=12&amp;amp;rt=2&amp;amp;pid=CH100487431033"&gt;Reference: Locations of Word 2003 commands in Word 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA101934281033&amp;amp;QueryID=pv9CUsonb0&amp;amp;respos=13&amp;amp;rt=2&amp;amp;pid=CH100622221033"&gt;Reference: Locations of Outlook 2003 commands in Outlook 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA101666061033&amp;amp;QueryID=pv9CUsonb0&amp;amp;respos=15&amp;amp;rt=2&amp;amp;pid=CH100621861033"&gt;Reference: Locations of Access 2003 commands in Access 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA100666231033&amp;amp;pid=CH100668131033&amp;amp;CTT=3&amp;amp;Origin=HA101490761033"&gt;Reference: Locations of PowerPoint 2003 commands in PowerPoint 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=HA100860481033&amp;amp;pid=CH101030621033&amp;amp;CTT=3&amp;amp;Origin=HA101491511033"&gt;Reference: Locations of Excel 2003 commands in Excel 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=DC102140981033&amp;amp;url=http://www.microsoft.com/downloads/details.aspx?FamilyId=8A5AF9D7-08A7-41BA-8844-76BB94228957&amp;amp;displaylang=en&amp;amp;hurl=3E0F51B678D8E5158316F6CC2AC70E74&amp;amp;QueryID=1w9C6MlMr0&amp;amp;respos=1&amp;amp;rt=2&amp;amp;pid=CD102140991033"&gt;Excel 2007 Add-in: Get Started Tab for Excel 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=DC102141021033&amp;amp;url=http://www.microsoft.com/downloads/details.aspx?FamilyId=F587370C-FDAE-4EDE-B528-AC58031A5DFF&amp;amp;displaylang=en&amp;amp;hurl=6640DDA03E78BC34988B054230827555&amp;amp;QueryID=1w9C6MlMr0&amp;amp;respos=2&amp;amp;rt=2&amp;amp;pid=CD102141051033"&gt;Word 2007 Add-in: Get Started Tab for Word 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;  &lt;p&gt;&lt;b&gt;&lt;a href="http://office.microsoft.com/search/redir.aspx?assetid=DC102141001033&amp;amp;url=http://www.microsoft.com/downloads/details.aspx?FamilyId=831F0AE9-FC50-4074-96D3-D02FD98CB041&amp;amp;displaylang=en&amp;amp;hurl=BDB63540FD038FF0AD5F9F543AE51ABC&amp;amp;QueryID=1w9C6MlMr0&amp;amp;respos=3&amp;amp;rt=2&amp;amp;pid=CD102141011033"&gt;PowerPoint 2007 Add-in: Get Started Tab for PowerPoint 2007&lt;/a&gt;&lt;/b&gt;&lt;/p&gt;&lt;img src="http://blogs.technet.com/aggbug.aspx?PostID=2756072" width="1" height="1"&gt;</description><category domain="http://blogs.technet.com/doxley/archive/tags/Windows/default.aspx">Windows</category><category domain="http://blogs.technet.com/doxley/archive/tags/Office/default.aspx">Office</category></item></channel></rss>