<?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>SkillZ Design</title>
	<atom:link href="http://skillzdesign.com/blog/feed/" rel="self" type="application/rss+xml" />
	<link>http://skillzdesign.com/blog</link>
	<description>Audio Visual Communication</description>
	<lastBuildDate>Fri, 02 Jul 2010 19:17:01 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Outlook: Save Selected Items to Folder with Datestamp</title>
		<link>http://skillzdesign.com/blog/2010/06/11/outlook-save-selected-items-to-folder-with-datestamp/</link>
		<comments>http://skillzdesign.com/blog/2010/06/11/outlook-save-selected-items-to-folder-with-datestamp/#comments</comments>
		<pubDate>Fri, 11 Jun 2010 17:58:16 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Scripting is Cool]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[vba]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=409</guid>
		<description><![CDATA[I tend to organize projects in file folders, where I store all project-related information including e-mails. Assign this macro to a toolbar button in Outlook. Select one or more Inbox messages, run the macro, and select the destination folder. Messages will be named according to subject, with a date/timestamp appended. All non-alphanumeric characters are replaced ]]></description>
			<content:encoded><![CDATA[<p>I tend to organize projects in file folders, where I store all project-related information including e-mails. Assign this macro to a toolbar button in Outlook. Select one or more Inbox messages, run the macro, and select the destination folder. Messages will be named according to subject, with a date/timestamp appended. All non-alphanumeric characters are replaced with underscores. (Note: this is a necessary workaround for file naming restrictions within the Windows filesystem.)</p>
<p>Please note: This code utilizes the <strong>Microsoft VBScript Regular Expressions 5.5</strong> library (enable it using the Tools- References dialog in the VBA IDE).</p>
<p>Create a VBA module and name it <strong>winapi_folderbrowser</strong>. Paste the following code into the new module:</p>
<pre>""" BEGIN CODE
Private Const BIF_RETURNONLYFSDIRS As Long = &amp;H1
Private Const BIF_DONTGOBELOWDOMAIN As Long = &amp;H2
Private Const BIF_RETURNFSANCESTORS As Long = &amp;H8
Private Const BIF_BROWSEFORCOMPUTER As Long = &amp;H1000
Private Const BIF_BROWSEFORPRINTER As Long = &amp;H2000
Private Const BIF_BROWSEINCLUDEFILES As Long = &amp;H4000
Private Const MAX_PATH As Long = 260
Type BrowseInfo
hOwner As Long
pidlRoot As Long
pszDisplayName As String
lpszINSTRUCTIONS As String
ulFlags As Long
lpfn As Long
lParam As Long
iImage As Long
End Type
Type SHFILEOPSTRUCT
hwnd As Long
wFunc As Long
pFrom As String
pTo As String
fFlags As Integer
fAnyOperationsAborted As Boolean
hNameMappings As Long
lpszProgressTitle As String
End Type
Declare Function SHGetPathFromIDListA Lib "shell32.dll" ( _
ByVal pidl As Long, _
ByVal pszBuffer As String) As Long
Declare Function SHBrowseForFolderA Lib "shell32.dll" ( _
lpBrowseInfo As BrowseInfo) As Long
Function BrowseFolder(Optional Caption As String = "") As String
Dim BrowseInfo As BrowseInfo
Dim FolderName As String
Dim ID As Long
Dim Res As Long
With BrowseInfo
.hOwner = 0
.pidlRoot = 0
.pszDisplayName = String$(MAX_PATH, vbNullChar)
.lpszINSTRUCTIONS = Caption
.ulFlags = BIF_RETURNONLYFSDIRS
.lpfn = 0
End With
FolderName = String$(MAX_PATH, vbNullChar)

ID = SHBrowseForFolderA(BrowseInfo)

If ID Then
Res = SHGetPathFromIDListA(ID, FolderName)
If Res Then
BrowseFolder = Left$(FolderName, InStr(FolderName, vbNullChar) - 1)
End If
End If
End Function
''' END CODE</pre>
<p>Create a new VBA module and name it <strong>mymacros</strong>. Paste the following code into the new module:</p>
<pre>''' BEGIN CODE
Sub SaveMsgToFolderWithSubjectAndTimestamp()
Dim Item As MailItem
Dim strTargetFilename As String
Dim strTargetPath As String
Dim objRegExp As New RegExp
With objRegExp
.Global = True
.IgnoreCase = True
.Pattern = "[^\w+]"
End With
strTargetPath = BrowseFolder
Dim SelectedItems As Selection
Set SelectedItems = Outlook.ActiveExplorer.Selection
For Each Item In SelectedItems
strTargetFilename = objRegExp.Replace(Item.Subject, "_") + "_" + Format(Item.ReceivedTime, "yyyy_mm_dd_hhnnss")
Item.SaveAs strTargetPath + "\" + strTargetFilename + ".msg", olMSG
Next Item
End Sub
''' END CODE
</pre>
<p>Assign the macro SaveMsgToFolderWithSubjectAndTimestamp to a custom toolbar button and you&#8217;re all set.</p>
<h3>One step further: Save attachments!</h3>
<p>The code has been extended as follows: If message has attachments, a new folder is created, named according to the message subject, with &#8220;_ATTACHMENTS&#8221; appended, and all attachments are saved in the new folder.</p>
<pre>Sub SaveMsgToFolderWithSubjectTimestampAttachments()
 Dim Item As MailItem
 Dim strTargetFilename As String
 Dim strTargetPath As String
 Dim Atmt As Attachment
 Dim strTargetAttachmentsFolderPath As String

 Dim objRegExp As New RegExp
 With objRegExp
 .Global = True
 .IgnoreCase = True
 .Pattern = "[^\w+]"
 End With

 strTargetPath = BrowseFolder

 Dim SelectedItems As Selection
 Set SelectedItems = Outlook.ActiveExplorer.Selection
 For Each Item In SelectedItems
 strTargetFilename = objRegExp.Replace(Item.Subject, "_") + "_" + Format(Now(), "yyyy_mm_dd_hhnnss")
 Item.SaveAs strTargetPath + "\" + strTargetFilename + ".msg", olMSG
 If Item.Attachments.Count &gt; 0 Then
 ' Create new folder
 strTargetAttachmentsFolderPath = strTargetPath + "\" + strTargetFilename + "_ATTACHMENTS"
 MkDir strTargetAttachmentsFolderPath
 ' Save Attachments
 For Each Atmt In Item.Attachments
 Atmt.SaveAsFile strTargetAttachmentsFolderPath + "\" + Atmt.DisplayName
 Next Atmt
 End If
 Next Item
End Sub</pre>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2010/06/11/outlook-save-selected-items-to-folder-with-datestamp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Document Compatibility and IE</title>
		<link>http://skillzdesign.com/blog/2010/06/08/document-compatibility-ie/</link>
		<comments>http://skillzdesign.com/blog/2010/06/08/document-compatibility-ie/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 19:39:31 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Technology]]></category>
		<category><![CDATA[WTF]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=406</guid>
		<description><![CDATA[There I was, showing off the cool Web page prototype on my local machine. I copied it up to the network folder and pointed my coworkers at the shared location. The layout broke on Internet Explorer 8, but it tested fine for me locally. I copied the files to another local machine, and sure enough, ]]></description>
			<content:encoded><![CDATA[<p>There I was, showing off the cool Web page prototype on my local machine. I copied it up to the network folder and pointed my coworkers at the shared location. The layout broke on Internet Explorer 8, but it tested fine for me locally. I copied the files to another local machine, and sure enough, it looked fine, locally.</p>
<p>Adding the following fixed the issue:<br />
<code>&lt;meta http-equiv="X-UA-Compatible" content="IE=100" /&gt;</code></p>
<p>Here&#8217;s the detailed explanation:<br />
<a href="http://msdn.microsoft.com/en-us/library/cc288325(VS.85).aspx">MSDN Article</a></p>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2010/06/08/document-compatibility-ie/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zoe Loves Hummus</title>
		<link>http://skillzdesign.com/blog/2009/03/15/zoe-loves-hummus/</link>
		<comments>http://skillzdesign.com/blog/2009/03/15/zoe-loves-hummus/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 20:01:09 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=239</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=8515709945650842236&#038;hl=en&#038;fs=true" style="width:400px;height:326px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"> </embed></p>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2009/03/15/zoe-loves-hummus/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gia Stirring Her Broom</title>
		<link>http://skillzdesign.com/blog/2009/02/08/gia-stirring-her-broom/</link>
		<comments>http://skillzdesign.com/blog/2009/02/08/gia-stirring-her-broom/#comments</comments>
		<pubDate>Sun, 08 Feb 2009 18:41:46 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/2009/02/08/gia-stirring-her-broom/</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><object width="477" height="477" data="http://video.google.com/googleplayer.swf?docid=-8125006369166481222&amp;hl=en&amp;fs=true" type="application/x-shockwave-flash"><param name="id" value="VideoPlayback" /><param name="src" value="http://video.google.com/googleplayer.swf?docid=-8125006369166481222&amp;hl=en&amp;fs=true" /><param name="allowfullscreen" value="true" /></object></p>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2009/02/08/gia-stirring-her-broom/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Gia&#8217;s First Story</title>
		<link>http://skillzdesign.com/blog/2009/01/24/gias-first-story/</link>
		<comments>http://skillzdesign.com/blog/2009/01/24/gias-first-story/#comments</comments>
		<pubDate>Sun, 25 Jan 2009 02:09:10 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Motivation]]></category>
		<category><![CDATA[Photos]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=229</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_230" class="wp-caption alignnone" style="width: 460px"><img class="size-medium wp-image-230" title="Gia's First Story" src="http://skillzdesign.com/blog/wp-content/uploads/2009/01/2009_01_22_50-450x600.jpg" alt="Dictated at Preschool" width="450" height="600" /><p class="wp-caption-text">Dictated at Preschool</p></div>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2009/01/24/gias-first-story/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kids Rocking Out &#8211; The Sequel</title>
		<link>http://skillzdesign.com/blog/2009/01/17/kids-rocking-out-the-sequel/</link>
		<comments>http://skillzdesign.com/blog/2009/01/17/kids-rocking-out-the-sequel/#comments</comments>
		<pubDate>Sun, 18 Jan 2009 03:04:40 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=227</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=534800621378253299&#038;hl=en&#038;fs=true" style="width:400px;height:326px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"> </embed></p>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2009/01/17/kids-rocking-out-the-sequel/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Kids Rocking Out</title>
		<link>http://skillzdesign.com/blog/2009/01/17/kids-rocking-out/</link>
		<comments>http://skillzdesign.com/blog/2009/01/17/kids-rocking-out/#comments</comments>
		<pubDate>Sat, 17 Jan 2009 07:11:53 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=225</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=-6154856997885247765&#038;hl=en&#038;fs=true" style="width:400px;height:326px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"> </embed></p>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2009/01/17/kids-rocking-out/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Happy Holidays from Gia and Zoe</title>
		<link>http://skillzdesign.com/blog/2008/12/26/happy-holidays-from-gia-and-zoe/</link>
		<comments>http://skillzdesign.com/blog/2008/12/26/happy-holidays-from-gia-and-zoe/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 16:13:33 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=223</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=-3893433120458944327&#038;hl=en&#038;fs=true" style="width:400px;height:326px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"> </embed></p>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2008/12/26/happy-holidays-from-gia-and-zoe/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Zoe the Holiday Bunny</title>
		<link>http://skillzdesign.com/blog/2008/12/21/zoe-the-holiday-bunny/</link>
		<comments>http://skillzdesign.com/blog/2008/12/21/zoe-the-holiday-bunny/#comments</comments>
		<pubDate>Mon, 22 Dec 2008 02:38:41 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[Media]]></category>
		<category><![CDATA[Video]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=221</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<p><embed id="VideoPlayback" src="http://video.google.com/googleplayer.swf?docid=-368788149779738728&#038;hl=en&#038;fs=true" style="width:400px;height:326px" allowFullScreen="true" allowScriptAccess="always" type="application/x-shockwave-flash"> </embed></p>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2008/12/21/zoe-the-holiday-bunny/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Gia and Ava Celebrate their Birthdays at Preschool</title>
		<link>http://skillzdesign.com/blog/2008/12/19/gia-and-ava-celebrate-their-birthdays-at-preschool/</link>
		<comments>http://skillzdesign.com/blog/2008/12/19/gia-and-ava-celebrate-their-birthdays-at-preschool/#comments</comments>
		<pubDate>Fri, 19 Dec 2008 05:48:05 +0000</pubDate>
		<dc:creator>Keith</dc:creator>
				<category><![CDATA[Family]]></category>
		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://skillzdesign.com/blog/?p=218</guid>
		<description><![CDATA[]]></description>
			<content:encoded><![CDATA[<div id="attachment_217" class="wp-caption alignnone" style="width: 410px"><img class="size-medium wp-image-217" title="Gia and Ava Celebrate their Birthdays" src="http://skillzdesign.com/blog/wp-content/uploads/2008/12/12182008_50-800x600.jpg" alt="Preschool Birthday Celebration" width="400" height="300" /><p class="wp-caption-text">Preschool Birthday Celebration</p></div>
]]></content:encoded>
			<wfw:commentRss>http://skillzdesign.com/blog/2008/12/19/gia-and-ava-celebrate-their-birthdays-at-preschool/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
