<?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:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>jeff germain's blog</title>
	<atom:link href="http://jeffgermain.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://jeffgermain.wordpress.com</link>
	<description>Using Gis.Software.Development;</description>
	<pubDate>Mon, 26 May 2008 12:50:32 +0000</pubDate>
	<generator>http://wordpress.org/?v=MU</generator>
	<language>en</language>
			<item>
		<title>Managing Icons and Bitmaps in Your ArcGIS and Windows Applications</title>
		<link>http://jeffgermain.wordpress.com/2007/03/05/managing-icons-and-bitmaps-in-your-arcgis-and-windows-applications/</link>
		<comments>http://jeffgermain.wordpress.com/2007/03/05/managing-icons-and-bitmaps-in-your-arcgis-and-windows-applications/#comments</comments>
		<pubDate>Mon, 05 Mar 2007 15:03:40 +0000</pubDate>
		<dc:creator>Jeff Germain</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[ArcMap]]></category>

		<guid isPermaLink="false">http://jeffgermain.wordpress.com/2007/03/05/managing-icons-and-bitmaps-in-your-arcgis-and-windows-applications/</guid>
		<description><![CDATA[Something I wanted to streamline for my development team was icon and bitmap management; or rather taking as much of the decision making process out of the equation. The strategies I have taken have the following benefits.
Time / Efficiency

I don’t want developers spending any time digging around for or capturing an icon/bitmap. Period.
I don’t want [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>Something I wanted to streamline for my development team was icon and bitmap management; or rather taking as much of the decision making process out of the equation. The strategies I have taken have the following benefits.</p>
<h5><strong>Time / Efficiency</strong></h5>
<ul>
<li>I don’t want developers spending any time digging around for or capturing an icon/bitmap. Period.</li>
<li>I don’t want 10 different methods written to assign an image to a control; which would require a minimum of 10 unit tests be written, and so on.</li>
<li>I do want to be able to change an icon or bitmap in one place and have that automatically update all projects. Really, how many copies of the folder browser image do you need across projects?</li>
<li>I want a single location where our custom ArcGIS command icons are stored.</li>
</ul>
<h5><strong>Consistent Presentation Layer</strong></h5>
<ul>
<li>Icons and bitmaps should be consistent across the presentation layers. I prefer to use Windows icons to ensure user recognition of functionality and purpose. I don’t want icons from different Windows OS mixed either. Office XP icons look dated on Vista… And Office 2000 icons look like ass on XP and Vista. By the same token, if your company has spent the money and bought an icon library then you want only images from that library used in your software. The one acception to this rule is the outdated ArcGIS icon library. I will mix these into my UI for example when a button&#8217;s functionality is to select features.</li>
</ul>
<p>What follows is a brief primer on how to get started building an icon and bitmap library, and a utility class with methods for retrieving those images.</p>
<h4><strong>The Utilities Assembly</strong></h4>
<p>I have created a sample Utilities library to be referenced by any project requiring icons or bitmaps. This includes custom Windows Forms, ArcGIS ICommand classes, custom property pages, etc. This project contains a “Resources” folder that holds the icons and bitmaps, has entries in the Resources.resx file, and an IconHelper class.</p>
<p><strong>Adding Icons and Bitmaps</strong></p>
<p>I started by first creating a “Resources” folder within the project. Next, I built my icon and bitmap library by adding the desired icons and bitmaps to that folder. I rename these files appending “Icon” or “Bitmap” (Example: Save.ico to SaveIcon.ico). This makes it easier to identify the image type when using the My feature in VB.NET (Example: My.Resources.SaveIcon).</p>
<h5><strong>The IconHelper Class</strong></h5>
<p>I created enums for both icons and bitmaps providing intuitive names… the actual file name minus the “Icon” or “Bitmap” you may have appended to it. Here you could do some logical groupings if you wanted for such things as EnumTextEditorIcons and such.</p>
<p>This is just one example that is included in the sample.</p>
<p>The enum:</p>
<blockquote>
<p style="background:#f8f8f8 none repeat scroll 0 50%;font-size:9pt;color:black;font-family:arial unicode ms;">
<p style="margin:0;"><span style="color:teal;">&#8221;&#8217; </span><span style="color:gray;">&lt;summary&gt;</span></p>
<p style="margin:0;"><span style="color:teal;">&#8221;&#8217; Enum for common Icons. </span></p>
<p style="margin:0;"><span style="color:teal;">&#8221;&#8217; </span><span style="color:gray;">&lt;/summary&gt;</span></p>
<p style="margin:0;"><span style="color:navy;">Public</span> <span style="color:navy;">Enum</span> <span style="color:maroon;">EnumIcon</span></p>
<p style="margin:0;">    <span style="color:maroon;">AddNew</span></p>
<p style="margin:0;">    <span style="color:maroon;">Copy</span></p>
<p style="margin:0;">    <span style="color:maroon;">Delete</span></p>
<p style="margin:0;">    <span style="color:maroon;">ErrorProvider</span></p>
<p style="margin:0;">    <span style="color:maroon;">Folder</span></p>
<p style="margin:0;">    <span style="color:maroon;">Help</span></p>
<p style="margin:0;">    <span style="color:maroon;">etc&#8230;</span></p>
<p style="margin:0;"><span style="color:navy;">End</span> <span style="color:navy;">Enum</span></p>
</blockquote>
<p>The method to retrieve the icon using the enum:</p>
<blockquote>
<p style="background:#f8f8f8 none repeat scroll 0 50%;font-size:9pt;color:black;font-family:arial unicode ms;">
<p style="margin:0;"><span style="color:teal;">&#8221;&#8217; </span><span style="color:gray;">&lt;summary&gt;</span></p>
<p style="margin:0;"><span style="color:teal;">&#8221;&#8217; Gets an icon from the embedded resources.</span></p>
<p style="margin:0;"><span style="color:teal;">&#8221;&#8217; </span><span style="color:gray;">&lt;/summary&gt;</span></p>
<p style="margin:0;"><span style="color:teal;">&#8221;&#8217; </span><span style="color:gray;">&lt;param name=&#8221;iconImage&#8221;&gt;</span><span style="color:teal;">The icon image.</span><span style="color:gray;">&lt;/param&gt;</span></p>
<p style="margin:0;"><span style="color:navy;">Shared</span> <span style="color:navy;">Function</span> <span style="color:maroon;">GetIcon</span>(<span style="color:navy;">ByVal</span> <span style="color:maroon;">iconImage</span> <span style="color:navy;">As</span> <span style="color:maroon;">EnumIcon</span>) <span style="color:navy;">As</span> <span style="color:maroon;">Icon</span></p>
<p style="margin:0;">    <span style="color:navy;">Select</span> <span style="color:navy;">Case</span> <span style="color:maroon;">iconImage</span></p>
<p style="margin:0;">        <span style="color:navy;">Case</span> <span style="color:maroon;">EnumIcon</span>.<span style="color:maroon;">AddNew</span></p>
<p style="margin:0;">            <span style="color:navy;">Return</span> <span style="color:navy;">My</span>.<span style="color:maroon;">Resources</span>.<span style="color:maroon;">AddNewIcon</span></p>
<p style="margin:0;">        <span style="color:navy;">Case</span> <span style="color:maroon;">EnumIcon</span>.<span style="color:maroon;">Copy</span></p>
<p style="margin:0;">            <span style="color:navy;">Return</span> <span style="color:navy;">My</span>.<span style="color:maroon;">Resources</span>.<span style="color:maroon;">CopyIcon</span></p>
<p style="margin:0;">        <span style="color:navy;">Case</span> <span style="color:maroon;">EnumIcon</span>.<span style="color:maroon;">Delete</span></p>
<p style="margin:0;">            <span style="color:navy;">Return</span> <span style="color:navy;">My</span>.<span style="color:maroon;">Resources</span>.<span style="color:maroon;">DeleteIcon</span></p>
<p style="margin:0;">        <span style="color:navy;">Case</span> <span style="color:maroon;">EnumIcon</span>.<span style="color:maroon;">Folder</span></p>
<p style="margin:0;">            <span style="color:navy;">Return</span> <span style="color:navy;">My</span>.<span style="color:maroon;">Resources</span>.<span style="color:maroon;">FolderIcon</span></p>
<p style="margin:0;">        <span style="color:navy;">Case</span> <span style="color:maroon;">EnumIcon</span>.<span style="color:maroon;">Help</span></p>
<p style="margin:0;">            <span style="color:navy;">Return</span> <span style="color:navy;">My</span>.<span style="color:maroon;">Resources</span>.<span style="color:maroon;">HelpIcon</span></p>
<p style="margin:0;">        <span style="color:navy;">etc&#8230;</span></p>
<p style="margin:0;">        <span style="color:navy;">Case</span> <span style="color:navy;">Else</span></p>
<p style="margin:0;">            <span style="color:navy;">Return</span> <span style="color:navy;">Nothing</span></p>
<p style="margin:0;">    <span style="color:navy;">End</span> <span style="color:navy;">Select</span></p>
<p style="margin:0;"><span style="color:navy;">End</span> <span style="color:navy;">Function</span></p>
</blockquote>
<p>Putting it all together in the UI:</p>
<blockquote>
<p style="background:#f8f8f8 none repeat scroll 0 50%;font-size:9pt;color:black;font-family:arial unicode ms;">
<p style="margin:0;"><span style="color:teal;">&#8216; Assign an image to a Button control</span></p>
<p style="margin:0;"><span style="color:navy;">Me</span>.<span style="color:maroon;">FolderBrowserButton</span>.<span style="color:maroon;">Image</span> = <span style="color:maroon;">_</span></p>
<p style="margin:0;">    <span style="color:maroon;">IconHelper</span>.<span style="color:maroon;">GetIcon</span>(<span style="color:maroon;">EnumIcon</span>.<span style="color:maroon;">Folder</span>).<span style="color:maroon;">ToBitmap</span>()</p>
<p style="margin:0;">&nbsp;</p>
<p style="margin:0;"><span style="color:teal;">&#8216;Add bitmap MxCommand   </span></p>
<p style="margin:0;"><span style="color:navy;">MyBase</span>.<span style="color:maroon;">m_bitmap</span> = <span style="color:maroon;">_</span></p>
<p style="margin:0;"><span style="color:maroon;">IconHelper</span>.<span style="color:maroon;">GetIcon(</span><span style="color:maroon;">EnumCustomArcGisCommands</span>.<span style="color:maroon;">ReportsGenerator</span>).<span style="color:maroon;">ToBitmap</span>()</p>
</blockquote>
<h4><strong>The Sample</strong></h4>
<p>The sample illustrates how to use the utility class in a Windows Form and shows other ways to expand this idea.</p>
<p>Download <a href="http://www.mediafire.com/?fjqdw0ynyl0" title="VB.NET sample" target="_blank">VB.NET sample</a> or C# sample.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jeffgermain.wordpress.com/22/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jeffgermain.wordpress.com/22/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffgermain.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffgermain.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffgermain.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffgermain.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffgermain.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffgermain.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffgermain.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffgermain.wordpress.com/22/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffgermain.wordpress.com/22/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffgermain.wordpress.com/22/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffgermain.wordpress.com&blog=721276&post=22&subd=jeffgermain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jeffgermain.wordpress.com/2007/03/05/managing-icons-and-bitmaps-in-your-arcgis-and-windows-applications/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jeffgermain-128.jpg" medium="image">
			<media:title type="html">Jeff</media:title>
		</media:content>
	</item>
		<item>
		<title>Source Code Documentation in VB.NET</title>
		<link>http://jeffgermain.wordpress.com/2007/02/14/source-code-documentation-in-vbnet/</link>
		<comments>http://jeffgermain.wordpress.com/2007/02/14/source-code-documentation-in-vbnet/#comments</comments>
		<pubDate>Wed, 14 Feb 2007 15:44:37 +0000</pubDate>
		<dc:creator>Jeff Germain</dc:creator>
		
		<category><![CDATA[.NET]]></category>

		<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://jeffgermain.wordpress.com/2007/02/14/source-code-documentation-in-vbnet/</guid>
		<description><![CDATA[I recently discovered GhostDoc which is a free add-in for Visual Studio .NET (2003 &#38; 2005). It&#8217;s a handy tool that generates XML documentation comments. This tool was written for C# developers but has extended beta support for VB.NET. What&#8217;s nice about it is that it reinforces the idea of using full descriptive names when [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I recently discovered <a href="http://www.roland-weigelt.de/ghostdoc/" target="_blank">GhostDoc</a> which is a free add-in for Visual Studio .NET (2003 &amp; 2005). It&#8217;s a handy tool that generates XML documentation comments. This tool was written for C# developers but has extended beta support for VB.NET. What&#8217;s nice about it is that it reinforces the idea of using full descriptive names when creating methods, properties, parameters, etc. It will create a descriptive summary by dissecting the member name and formulating a sentence. It&#8217;s about as hands free as it gets!</p>
<p>I&#8217;ve been using it in my VB.NET projects with much success. While it doesn&#8217;t always get it 100% right, it does get you 95% of the way there. Definitely a time saver.</p>
<p>If you want to use it within VB.NET you&#8217;ll need to enable this feature in the configuration dialog. Go to Tools | GhostDoc | Configure GhostDoc and select the Options tab. There you&#8217;ll find a checkbox for this feature.</p>
<p><a href="http://jeffgermain.files.wordpress.com/2007/02/windowslivewritersourcecodedocumentationinvb.net-74feghostdoc-vboption31.jpg" target="_new"><img height="218" src="http://jeffgermain.files.wordpress.com/2007/02/windowslivewritersourcecodedocumentationinvb.net-74feghostdoc-vboption-thumb11.jpg?w=240&h=218" width="240"></a> </p>
<p>I&#8217;ve barely scratched the surface of this tools capabilities. You can set it up to add the username or timestamp when documenting members. Lot&#8217;s more too! So have a look.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jeffgermain.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jeffgermain.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffgermain.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffgermain.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffgermain.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffgermain.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffgermain.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffgermain.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffgermain.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffgermain.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffgermain.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffgermain.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffgermain.wordpress.com&blog=721276&post=16&subd=jeffgermain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jeffgermain.wordpress.com/2007/02/14/source-code-documentation-in-vbnet/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jeffgermain-128.jpg" medium="image">
			<media:title type="html">Jeff</media:title>
		</media:content>

		<media:content url="http://jeffgermain.files.wordpress.com/2007/02/windowslivewritersourcecodedocumentationinvb.net-74feghostdoc-vboption-thumb11.jpg" medium="image" />
	</item>
		<item>
		<title>Debugging Custom ArcGIS 9.1 Components in Visual Studio .NET 2003</title>
		<link>http://jeffgermain.wordpress.com/2007/02/14/debugging-custom-arcgis-91-components-in-visual-studio-net-2003/</link>
		<comments>http://jeffgermain.wordpress.com/2007/02/14/debugging-custom-arcgis-91-components-in-visual-studio-net-2003/#comments</comments>
		<pubDate>Tue, 13 Feb 2007 21:38:05 +0000</pubDate>
		<dc:creator>Jeff Germain</dc:creator>
		
		<category><![CDATA[Debugging]]></category>

		<guid isPermaLink="false">http://jeffgermain.wordpress.com/2007/02/14/debugging-custom-arcgis-91-components-in-visual-studio-net-2003/</guid>
		<description><![CDATA[If you have both the .NET 1.1 and 2.0 Frameworks installed on your development machine you will run into troubles when trying to debug ArcGIS 9.1 components written on the .NET 1.1 Framework. This is because ArcMap is an unmanaged application and as such when it initializes it loads the most current .NET Framework installed [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>If you have both the .NET 1.1 and 2.0 Frameworks installed on your development machine you will run into troubles when trying to debug ArcGIS 9.1 components written on the .NET 1.1 Framework. This is because ArcMap is an unmanaged application and as such when it initializes it loads the most current .NET Framework installed on the system. Not to fret though as it’s easily overcome using a configuration file.</p>
<p>Simply copy the following to a text file and save it as &lt;ApplicationName&gt;.&lt;ApplicationExtension&gt;.config<br />
So, a config file for ArcMap would be named ArcMap.exe.config.</p>
<blockquote><p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243; ?&gt;<br />
&lt;configuration&gt;<br />
&lt;startup&gt;<br />
&lt;supportedRuntime version=&#8221;v1.1.4322&#8243; /&gt;<br />
&lt;/startup&gt;<br />
&lt;/configuration&gt;</p></blockquote>
<p>Save this file to the ArcGIS bin directory. The default location for this directory is C:\Program Files\ArcGIS\Bin.</p>
<p>Now you’re set to debug .NET 1.1 components. When you need to debug .NET 2.0 components simply rename the file to ArcMap.exe.config.xxx.</p>
<p>You can read more from ESRI <a target="_blank" href="http://support.esri.com/index.cfm?fa=knowledgebase.techarticles.articleShow&amp;d=29695">here</a>.</p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jeffgermain.wordpress.com/12/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jeffgermain.wordpress.com/12/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffgermain.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffgermain.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffgermain.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffgermain.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffgermain.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffgermain.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffgermain.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffgermain.wordpress.com/12/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffgermain.wordpress.com/12/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffgermain.wordpress.com/12/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffgermain.wordpress.com&blog=721276&post=12&subd=jeffgermain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jeffgermain.wordpress.com/2007/02/14/debugging-custom-arcgis-91-components-in-visual-studio-net-2003/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jeffgermain-128.jpg" medium="image">
			<media:title type="html">Jeff</media:title>
		</media:content>
	</item>
		<item>
		<title>Task Manager Missing Tabs</title>
		<link>http://jeffgermain.wordpress.com/2007/02/02/task-manager-missing-tabs/</link>
		<comments>http://jeffgermain.wordpress.com/2007/02/02/task-manager-missing-tabs/#comments</comments>
		<pubDate>Fri, 02 Feb 2007 16:39:10 +0000</pubDate>
		<dc:creator>Jeff Germain</dc:creator>
		
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://jeffgermain.wordpress.com/2007/02/02/task-manager-missing-tabs/</guid>
		<description><![CDATA[I&#8217;ve had an annoying problem for a while now and finally got around to looking into it. My Task Manager was missing all it&#8217;s tabs. In fact, it was getting displayed without being hosted within its usual Windows Form. I had know idea what I did to  deserve this. See below.

Anyways, it&#8217;s an easy fix. [...]]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>I&#8217;ve had an annoying problem for a while now and finally got around to looking into it. My Task Manager was missing all it&#8217;s tabs. In fact, it was getting displayed without being hosted within its usual Windows Form. I had know idea what I did to  deserve this. See below.</p>
<p><a href="http://jeffgermain.files.wordpress.com/2007/02/taskmgr1.jpg" title="Task Manager Issue"><img src="http://jeffgermain.files.wordpress.com/2007/02/taskmgr1.jpg" alt="Task Manager Issue" /></a></p>
<p>Anyways, it&#8217;s an easy fix. Simply double-click anywhere around the border to viola! it&#8217;s back!. Double-click again and it goes back into this minimalist mode.</p>
<p><a href="http://jeffgermain.files.wordpress.com/2007/02/taskmgr2.jpg" title="Task Manager Fix"><img src="http://jeffgermain.files.wordpress.com/2007/02/taskmgr2.jpg" alt="Task Manager Fix" /></a></p>
<p><a href="http://jeffgermain.files.wordpress.com/2007/02/taskmgr3.jpg" title="Task Manager Fixed"><img src="http://jeffgermain.files.wordpress.com/2007/02/taskmgr3.thumbnail.jpg" alt="Task Manager Fixed" /></a></p>
<img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/jeffgermain.wordpress.com/6/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/jeffgermain.wordpress.com/6/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/jeffgermain.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/jeffgermain.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/jeffgermain.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/jeffgermain.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/jeffgermain.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/jeffgermain.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/jeffgermain.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/jeffgermain.wordpress.com/6/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/jeffgermain.wordpress.com/6/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/jeffgermain.wordpress.com/6/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=jeffgermain.wordpress.com&blog=721276&post=6&subd=jeffgermain&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://jeffgermain.wordpress.com/2007/02/02/task-manager-missing-tabs/feed/</wfw:commentRss>
	
		<media:content url="http://a.wordpress.com/avatar/jeffgermain-128.jpg" medium="image">
			<media:title type="html">Jeff</media:title>
		</media:content>

		<media:content url="http://jeffgermain.files.wordpress.com/2007/02/taskmgr1.jpg" medium="image">
			<media:title type="html">Task Manager Issue</media:title>
		</media:content>

		<media:content url="http://jeffgermain.files.wordpress.com/2007/02/taskmgr2.jpg" medium="image">
			<media:title type="html">Task Manager Fix</media:title>
		</media:content>

		<media:content url="http://jeffgermain.files.wordpress.com/2007/02/taskmgr3.thumbnail.jpg" medium="image">
			<media:title type="html">Task Manager Fixed</media:title>
		</media:content>
	</item>
	</channel>
</rss>