<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>C# Tips &#187; BindingSource</title>
	<atom:link href="http://csharptips.wordpress.com/tag/bindingsource/feed/" rel="self" type="application/rss+xml" />
	<link>http://csharptips.wordpress.com</link>
	<description>my technical experience regarding C# programming</description>
	<lastBuildDate>Tue, 01 Dec 2009 06:15:48 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<cloud domain='csharptips.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://www.gravatar.com/blavatar/bb4e4f1dc70d95a023d9eb43d0b91064?s=96&#038;d=http://s.wordpress.com/i/buttonw-com.png</url>
		<title>C# Tips &#187; BindingSource</title>
		<link>http://csharptips.wordpress.com</link>
	</image>
			<item>
		<title>Sorting</title>
		<link>http://csharptips.wordpress.com/2009/05/16/sorting/</link>
		<comments>http://csharptips.wordpress.com/2009/05/16/sorting/#comments</comments>
		<pubDate>Sat, 16 May 2009 05:36:43 +0000</pubDate>
		<dc:creator>SkilledDeveloper</dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[BindingSource]]></category>
		<category><![CDATA[Sorting]]></category>

		<guid isPermaLink="false">http://csharptips.wordpress.com/2009/05/16/sorting/</guid>
		<description><![CDATA[There are several ways to sort data in C# but one of the easiest ways is using BindingSource sort capability.
Depending on what object (underlying list) is linked to the BindingSource as its DataSource and whether it has implemented IBindingList or IBindingListView interfaces or not, you can use this feature.
To find out whether a BindingSource with [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=40&subd=csharptips&ref=&feed=1" />]]></description>
			<content:encoded><![CDATA[<div class='snap_preview'><br /><p>There are several ways to sort data in C# but one of the easiest ways is using BindingSource sort capability.<br />
Depending on what object (underlying list) is linked to the BindingSource as its DataSource and whether it has implemented IBindingList or IBindingListView interfaces or not, you can use this feature.</p>
<p>To find out whether a BindingSource with current DataSource supports sorting, use SupportsSorting property:</p>
<p>if bindingSource1.SupportsSorting<br />
{<br />
	bindingSource1.Sort = &#8220;Code, Name&#8221;;<br />
}</p>
<p>Similary, you can benefit from BindingSource.Filter .</p>
  <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/csharptips.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/csharptips.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/csharptips.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/csharptips.wordpress.com/40/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/csharptips.wordpress.com/40/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/csharptips.wordpress.com/40/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=csharptips.wordpress.com&blog=4757285&post=40&subd=csharptips&ref=&feed=1" /></div>]]></content:encoded>
			<wfw:commentRss>http://csharptips.wordpress.com/2009/05/16/sorting/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://1.gravatar.com/avatar/b032187903bdb8726b9b3f840c04ab7c?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">SkilledDeveloper</media:title>
		</media:content>
	</item>
	</channel>
</rss>