<?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 for Bitmatic</title>
	<atom:link href="http://bitmatic.com/comments/feed" rel="self" type="application/rss+xml" />
	<link>http://bitmatic.com</link>
	<description>Lean IT-solutions in .NET/C#</description>
	<lastBuildDate>Thu, 17 May 2012 14:52:35 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>Comment on Understanding thread priorities in C# by Inetuingult</title>
		<link>http://bitmatic.com/c/understanding-thread-priorities-in-c/comment-page-1#comment-29420</link>
		<dc:creator>Inetuingult</dc:creator>
		<pubDate>Thu, 17 May 2012 14:52:35 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=434#comment-29420</guid>
		<description>Construccion &lt;a href=&quot;http://www.zimbio.com/General/articles/D6iezn7h0Ab/Nuevos+materiales+para+construir+de+viviendas&quot; rel=&quot;nofollow&quot;&gt;contruir viviendas&lt;/a&gt;
 restaura tu vivienda</description>
		<content:encoded><![CDATA[<p>Construccion <a href="http://www.zimbio.com/General/articles/D6iezn7h0Ab/Nuevos+materiales+para+construir+de+viviendas" rel="nofollow">contruir viviendas</a><br />
 restaura tu vivienda</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Single instance applications in Windows CE by Karen Austrin</title>
		<link>http://bitmatic.com/c/single-instance-applications-in-windows-ce/comment-page-1#comment-29406</link>
		<dc:creator>Karen Austrin</dc:creator>
		<pubDate>Thu, 17 May 2012 06:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=370#comment-29406</guid>
		<description>Is Windows CE on the way out? Compared with other OS&#039;s I think they would be better off re-branding it</description>
		<content:encoded><![CDATA[<p>Is Windows CE on the way out? Compared with other OS&#8217;s I think they would be better off re-branding it</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing a slow scrolling DataGridView by Florian</title>
		<link>http://bitmatic.com/c/fixing-a-slow-scrolling-datagridview/comment-page-1#comment-27114</link>
		<dc:creator>Florian</dc:creator>
		<pubDate>Fri, 13 Apr 2012 13:10:44 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=476#comment-27114</guid>
		<description>Thanks for your solution using extension methods!

However I found that I had to enable double buffering for all controls in my application, just enabling it for the DataGridView was not sufficient.

What I did was this:

Change your extension method to work on Controls:
 public static class ExtensionMethods
    {

        public static void DoubleBuffered(this Control control, bool setting)
        {
            Type dgvType = control.GetType();
            PropertyInfo pi = dgvType.GetProperty(&quot;DoubleBuffered&quot;, BindingFlags.Instance &#124; BindingFlags.NonPublic);
            pi.SetValue(control, setting, null);
        }
}

And call it for all controls in my app in the constructor of the main program: DoubleBuffer(this):

    protected void DoubleBuffer(Control control)
    {
        control.DoubleBuffered(true);
        foreach (Control c in control.Controls) { DoubleBuffer(c); }
    }</description>
		<content:encoded><![CDATA[<p>Thanks for your solution using extension methods!</p>
<p>However I found that I had to enable double buffering for all controls in my application, just enabling it for the DataGridView was not sufficient.</p>
<p>What I did was this:</p>
<p>Change your extension method to work on Controls:<br />
 public static class ExtensionMethods<br />
    {</p>
<p>        public static void DoubleBuffered(this Control control, bool setting)<br />
        {<br />
            Type dgvType = control.GetType();<br />
            PropertyInfo pi = dgvType.GetProperty(&#8220;DoubleBuffered&#8221;, BindingFlags.Instance | BindingFlags.NonPublic);<br />
            pi.SetValue(control, setting, null);<br />
        }<br />
}</p>
<p>And call it for all controls in my app in the constructor of the main program: DoubleBuffer(this):</p>
<p>    protected void DoubleBuffer(Control control)<br />
    {<br />
        control.DoubleBuffered(true);<br />
        foreach (Control c in control.Controls) { DoubleBuffer(c); }<br />
    }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing a slow scrolling DataGridView by Aryan</title>
		<link>http://bitmatic.com/c/fixing-a-slow-scrolling-datagridview/comment-page-1#comment-26516</link>
		<dc:creator>Aryan</dc:creator>
		<pubDate>Sat, 31 Mar 2012 05:28:19 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=476#comment-26516</guid>
		<description>Wonderful.</description>
		<content:encoded><![CDATA[<p>Wonderful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing a slow scrolling DataGridView by Komala</title>
		<link>http://bitmatic.com/c/fixing-a-slow-scrolling-datagridview/comment-page-1#comment-24931</link>
		<dc:creator>Komala</dc:creator>
		<pubDate>Sun, 19 Feb 2012 08:55:40 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=476#comment-24931</guid>
		<description>Thank you :)</description>
		<content:encoded><![CDATA[<p>Thank you <img src='http://bitmatic.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Implementing a scrolling RichTextBox by DenS</title>
		<link>http://bitmatic.com/c/implementing-a-scrolling-richtextbox/comment-page-1#comment-24422</link>
		<dc:creator>DenS</dc:creator>
		<pubDate>Mon, 06 Feb 2012 13:36:45 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=283#comment-24422</guid>
		<description>WoW....

I have been developing a C# program to communicate with an amateur radio modem (PK-232) via a serial port and struggled with the rich text box scrolling issue until I found this very elegant solution.
I can not believe that this is not part of the rich text box class...

Thank you VERY much....
DenS</description>
		<content:encoded><![CDATA[<p>WoW&#8230;.</p>
<p>I have been developing a C# program to communicate with an amateur radio modem (PK-232) via a serial port and struggled with the rich text box scrolling issue until I found this very elegant solution.<br />
I can not believe that this is not part of the rich text box class&#8230;</p>
<p>Thank you VERY much&#8230;.<br />
DenS</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Single instance applications in Windows CE by Singh</title>
		<link>http://bitmatic.com/c/single-instance-applications-in-windows-ce/comment-page-1#comment-23739</link>
		<dc:creator>Singh</dc:creator>
		<pubDate>Thu, 19 Jan 2012 08:45:19 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=370#comment-23739</guid>
		<description>This is a perfect and simple solution. Thanks Jacob!</description>
		<content:encoded><![CDATA[<p>This is a perfect and simple solution. Thanks Jacob!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing a slow scrolling DataGridView by Kevin</title>
		<link>http://bitmatic.com/c/fixing-a-slow-scrolling-datagridview/comment-page-1#comment-22445</link>
		<dc:creator>Kevin</dc:creator>
		<pubDate>Wed, 21 Dec 2011 16:12:02 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=476#comment-22445</guid>
		<description>AMAZING!!!</description>
		<content:encoded><![CDATA[<p>AMAZING!!!</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing a slow scrolling DataGridView by Riki</title>
		<link>http://bitmatic.com/c/fixing-a-slow-scrolling-datagridview/comment-page-1#comment-22140</link>
		<dc:creator>Riki</dc:creator>
		<pubDate>Thu, 15 Dec 2011 10:58:27 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=476#comment-22140</guid>
		<description>Thank you a lot!
Grazie mille!
Riki</description>
		<content:encoded><![CDATA[<p>Thank you a lot!<br />
Grazie mille!<br />
Riki</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Fixing a slow scrolling DataGridView by Alireza</title>
		<link>http://bitmatic.com/c/fixing-a-slow-scrolling-datagridview/comment-page-1#comment-21703</link>
		<dc:creator>Alireza</dc:creator>
		<pubDate>Tue, 06 Dec 2011 13:14:28 +0000</pubDate>
		<guid isPermaLink="false">http://bitmatic.com/?p=476#comment-21703</guid>
		<description>Andrew,

Thank you very much
You really saved me 

good luck</description>
		<content:encoded><![CDATA[<p>Andrew,</p>
<p>Thank you very much<br />
You really saved me </p>
<p>good luck</p>
]]></content:encoded>
	</item>
</channel>
</rss>

