<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments on: Improvements to the OpenFileDialog class</title>
	<atom:link href="http://www.christec.co.nz/blog/archives/286/feed" rel="self" type="application/rss+xml" />
	<link>http://www.christec.co.nz/blog/archives/286</link>
	<description>Development for a mobile world - Making a quality platform one application at a time</description>
	<lastBuildDate>Fri, 12 Mar 2010 05:38:21 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.5</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Somdutta</title>
		<link>http://www.christec.co.nz/blog/archives/286/comment-page-1#comment-31902</link>
		<dc:creator>Somdutta</dc:creator>
		<pubDate>Tue, 20 Oct 2009 08:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://www.christec.co.nz/blog/archives/286#comment-31902</guid>
		<description>Just about a perfect solution for anyone who&#039;s trying to save time to market....Thanks</description>
		<content:encoded><![CDATA[<p>Just about a perfect solution for anyone who&#8217;s trying to save time to market&#8230;.Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: poek</title>
		<link>http://www.christec.co.nz/blog/archives/286/comment-page-1#comment-29875</link>
		<dc:creator>poek</dc:creator>
		<pubDate>Sat, 29 Aug 2009 17:01:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.christec.co.nz/blog/archives/286#comment-29875</guid>
		<description>Great sample.
If you want to have multi-filter you can simply change this part:

foreach (string entry in OrderEnteries(Directory.GetFiles(currentPath, filters[i])))
                {
                    ListViewItem item = new ListViewItem(Path.GetFileName(entry));
                    item.ImageIndex = shellIconCache[entry];
                    item.Tag = entry;
                    fileListView.Items.Add(item);
                }


to this:

string[] filters = filter.Split(&#039;&#124;&#039;);
           
            for (int i = 0; i &lt; filters.Length; i++)
            {
                foreach (string entry in OrderEnteries(Directory.GetFiles(currentPath, filters[i])))
                {
                    ListViewItem item = new ListViewItem(Path.GetFileName(entry));
                    item.ImageIndex = shellIconCache[entry];
                    item.Tag = entry;
                    fileListView.Items.Add(item);
                }
            }


PS.Sorry for my english.</description>
		<content:encoded><![CDATA[<p>Great sample.<br />
If you want to have multi-filter you can simply change this part:</p>
<p>foreach (string entry in OrderEnteries(Directory.GetFiles(currentPath, filters[i])))<br />
                {<br />
                    ListViewItem item = new ListViewItem(Path.GetFileName(entry));<br />
                    item.ImageIndex = shellIconCache[entry];<br />
                    item.Tag = entry;<br />
                    fileListView.Items.Add(item);<br />
                }</p>
<p>to this:</p>
<p>string[] filters = filter.Split(&#8217;|');</p>
<p>            for (int i = 0; i &lt; filters.Length; i++)<br />
            {<br />
                foreach (string entry in OrderEnteries(Directory.GetFiles(currentPath, filters[i])))<br />
                {<br />
                    ListViewItem item = new ListViewItem(Path.GetFileName(entry));<br />
                    item.ImageIndex = shellIconCache[entry];<br />
                    item.Tag = entry;<br />
                    fileListView.Items.Add(item);<br />
                }<br />
            }</p>
<p>PS.Sorry for my english.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: makis</title>
		<link>http://www.christec.co.nz/blog/archives/286/comment-page-1#comment-18246</link>
		<dc:creator>makis</dc:creator>
		<pubDate>Wed, 10 Dec 2008 11:26:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.christec.co.nz/blog/archives/286#comment-18246</guid>
		<description>nice work</description>
		<content:encoded><![CDATA[<p>nice work</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cocotteseb</title>
		<link>http://www.christec.co.nz/blog/archives/286/comment-page-1#comment-5200</link>
		<dc:creator>Cocotteseb</dc:creator>
		<pubDate>Mon, 24 Mar 2008 10:42:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.christec.co.nz/blog/archives/286#comment-5200</guid>
		<description>Hi,

It is a really nice sample with a lot of interesting things such as shell icons (!), PPC and smartphone code,...
I will deeply look into this!

Thanks!
Cocotteseb</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>It is a really nice sample with a lot of interesting things such as shell icons (!), PPC and smartphone code,&#8230;<br />
I will deeply look into this!</p>
<p>Thanks!<br />
Cocotteseb</p>
]]></content:encoded>
	</item>
</channel>
</rss>
