<?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>RandyRiegel.com</title>
	<atom:link href="http://randyriegel.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://randyriegel.com</link>
	<description>Just a bunch of stuff</description>
	<lastBuildDate>Thu, 05 Aug 2010 13:34:05 +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>.NET vs Java Movie Trailer</title>
		<link>http://randyriegel.com/2010/08/05/net-vs-java-movie-trailer/</link>
		<comments>http://randyriegel.com/2010/08/05/net-vs-java-movie-trailer/#comments</comments>
		<pubDate>Thu, 05 Aug 2010 13:33:49 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>
		<category><![CDATA[Humor]]></category>

		<guid isPermaLink="false">http://randyriegel.com/?p=13</guid>
		<description><![CDATA[Funny stuff.  LOL]]></description>
			<content:encoded><![CDATA[<p>Funny stuff.  LOL</p>
<p><object width="480" height="270"><param name="movie" value="http://www.dailymotion.com/swf/video/xdwk35?additionalInfos=0"></param><param name="allowFullScreen" value="true"></param><param name="allowScriptAccess" value="always"></param><embed type="application/x-shockwave-flash" src="http://www.dailymotion.com/swf/video/xdwk35?additionalInfos=0" width="480" height="270" allowfullscreen="true" allowscriptaccess="always"></embed></object></p>
]]></content:encoded>
			<wfw:commentRss>http://randyriegel.com/2010/08/05/net-vs-java-movie-trailer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy way to autosize columns of a detail listview</title>
		<link>http://randyriegel.com/2010/07/27/easy-way-to-autosize-columns-of-a-detail-listview/</link>
		<comments>http://randyriegel.com/2010/07/27/easy-way-to-autosize-columns-of-a-detail-listview/#comments</comments>
		<pubDate>Tue, 27 Jul 2010 15:39:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[.NET]]></category>

		<guid isPermaLink="false">http://randyriegel.com/?p=9</guid>
		<description><![CDATA[Following code will resize the columns of a listview to either the length of the column name or the length of the biggest item in that column. Private Sub AutoSizeListviewCols(ByVal lv As ListView) Dim colHeader As ColumnHeader Dim width1, width2 As Integer Dim colHeaderCollection As ListView.ColumnHeaderCollection = lv.Columns For i As Int32 = 0 To [...]]]></description>
			<content:encoded><![CDATA[<p>Following code will resize the columns of a listview to either the length of the column name or the length of the biggest item in that column.</p>
<pre class="brush: vb;">Private Sub AutoSizeListviewCols(ByVal lv As ListView)
 Dim colHeader As ColumnHeader
 Dim width1, width2 As Integer

 Dim colHeaderCollection As ListView.ColumnHeaderCollection = lv.Columns
 For i As Int32 = 0 To colHeaderCollection.Count - 1

 colHeader = colHeaderCollection(i)
 colHeader.Width = -1
 width1 = colHeader.Width
 colHeader.Width = -2
 width2 = colHeader.Width

 colHeader.Width = CInt(If(width2 &lt; width1, width1, width2))
 Next

 End Sub</pre>
]]></content:encoded>
			<wfw:commentRss>http://randyriegel.com/2010/07/27/easy-way-to-autosize-columns-of-a-detail-listview/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

