<?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/"
	xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Visual Inheritance using DataGridView</title>
	<atom:link href="http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/feed/" rel="self" type="application/rss+xml" />
	<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/</link>
	<description>A random dose of Brandon Ryan's experience in the world of .NET software development and SharePoint</description>
	<lastBuildDate>Sun, 08 Nov 2009 18:50:05 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: La (no) herencia visual del DataGridView - Dani PuntosNET</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-43</link>
		<dc:creator>La (no) herencia visual del DataGridView - Dani PuntosNET</dc:creator>
		<pubDate>Sun, 08 Nov 2009 18:50:05 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-43</guid>
		<description>[...] tanto no pueden modificarse en &#039;design time&#039;. Hay muchas quejas al respecto aqu&#237;, aqu&#237;, aqu&#237;,&#160;aqu&#237; y aqu&#237;. Y adem&#225;s est&#225; reportado a Microsoft [...]</description>
		<content:encoded><![CDATA[<p>[...] tanto no pueden modificarse en &#39;design time&#39;. Hay muchas quejas al respecto aqu&iacute;, aqu&iacute;, aqu&iacute;,&nbsp;aqu&iacute; y aqu&iacute;. Y adem&aacute;s est&aacute; reportado a Microsoft [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mike</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-42</link>
		<dc:creator>Mike</dc:creator>
		<pubDate>Wed, 14 Oct 2009 23:14:39 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-42</guid>
		<description>Genius

How do you guys come up with such solutions, wow.</description>
		<content:encoded><![CDATA[<p>Genius</p>
<p>How do you guys come up with such solutions, wow.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tghoang</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-39</link>
		<dc:creator>tghoang</dc:creator>
		<pubDate>Tue, 18 Aug 2009 09:02:53 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-39</guid>
		<description>oh, thank you very much.
However, after this, we lose some shortcut in designer smart tag of the DataGridView.</description>
		<content:encoded><![CDATA[<p>oh, thank you very much.<br />
However, after this, we lose some shortcut in designer smart tag of the DataGridView.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Robin</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-38</link>
		<dc:creator>Robin</dc:creator>
		<pubDate>Tue, 28 Jul 2009 12:34:14 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-38</guid>
		<description>Thanks, exactly what I needed!</description>
		<content:encoded><![CDATA[<p>Thanks, exactly what I needed!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Russell</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-37</link>
		<dc:creator>Russell</dc:creator>
		<pubDate>Wed, 17 Jun 2009 09:04:49 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-37</guid>
		<description>Brilliant, thanks Brandon!  I was just about to give up on inherting from my base form with a DataGridView on it when I found this post.  You just made my life a lot easier...</description>
		<content:encoded><![CDATA[<p>Brilliant, thanks Brandon!  I was just about to give up on inherting from my base form with a DataGridView on it when I found this post.  You just made my life a lot easier&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mohammad</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-35</link>
		<dc:creator>Mohammad</dc:creator>
		<pubDate>Sun, 03 May 2009 06:49:02 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-35</guid>
		<description>I tried this in C# but it did not work.

Steps I tried:
1. added a user control.
2. added reference to System.Design
3. in designer source code I deleted every thing and inserted following code instead:

using System.ComponentModel;
using System.Windows.Forms;

namespace Backend.DataForms
{
    [Designer(typeof(System.Windows.Forms.Design.ControlDesigner))]  
   public class ucInheritedDataGridView : DataGridView { }  
}

4.putted the user control on an inherited form

it didn&#039;t work even by restarting vs

I&#039;m using vs2008 with .net framework 3.5</description>
		<content:encoded><![CDATA[<p>I tried this in C# but it did not work.</p>
<p>Steps I tried:<br />
1. added a user control.<br />
2. added reference to System.Design<br />
3. in designer source code I deleted every thing and inserted following code instead:</p>
<p>using System.ComponentModel;<br />
using System.Windows.Forms;</p>
<p>namespace Backend.DataForms<br />
{<br />
    [Designer(typeof(System.Windows.Forms.Design.ControlDesigner))]<br />
   public class ucInheritedDataGridView : DataGridView { }<br />
}</p>
<p>4.putted the user control on an inherited form</p>
<p>it didn&#8217;t work even by restarting vs</p>
<p>I&#8217;m using vs2008 with .net framework 3.5</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brandon Ryan</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-32</link>
		<dc:creator>Brandon Ryan</dc:creator>
		<pubDate>Tue, 31 Mar 2009 13:40:11 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-32</guid>
		<description>Glad to hear it worked for you Paul.  Thanks for visiting and leaving a comment!</description>
		<content:encoded><![CDATA[<p>Glad to hear it worked for you Paul.  Thanks for visiting and leaving a comment!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-31</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 31 Mar 2009 11:40:45 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-31</guid>
		<description>I spoke to soon, I restarted Visual Studio and boom, it&#039;s working now.

Cheers for the article.</description>
		<content:encoded><![CDATA[<p>I spoke to soon, I restarted Visual Studio and boom, it&#8217;s working now.</p>
<p>Cheers for the article.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-30</link>
		<dc:creator>Paul</dc:creator>
		<pubDate>Tue, 31 Mar 2009 11:31:41 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-30</guid>
		<description>Humm this doesn&#039;t work for me... not sure why though.

.Net 2.0,
Visual Studio 2008,

Attempting to do this with the DataGridView.</description>
		<content:encoded><![CDATA[<p>Humm this doesn&#8217;t work for me&#8230; not sure why though.</p>
<p>.Net 2.0,<br />
Visual Studio 2008,</p>
<p>Attempting to do this with the DataGridView.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pmz</title>
		<link>http://dotnetengineer.wordpress.com/2008/06/27/visual-inheritance-using-datagridview/#comment-29</link>
		<dc:creator>pmz</dc:creator>
		<pubDate>Sun, 22 Feb 2009 02:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://dotnetengineer.wordpress.com/?p=22#comment-29</guid>
		<description>Dear Mr. Ryan,
First of all, THANK YOU, that&#039;s a solution for problems - stupid VS (even 2008!) could not support the DataGridView in child form from the parent form.

I present my C++ code of your idea:
[Designer(&quot;System.Windows.Forms.Design.ControlDesigner, System.Windows.Forms.Design.DLL&quot;)]
	public ref class NLCFormDataGridView : System::Windows::Forms::DataGridView {};

It works perfectly! Once again, thank you.</description>
		<content:encoded><![CDATA[<p>Dear Mr. Ryan,<br />
First of all, THANK YOU, that&#8217;s a solution for problems &#8211; stupid VS (even 2008!) could not support the DataGridView in child form from the parent form.</p>
<p>I present my C++ code of your idea:<br />
[Designer("System.Windows.Forms.Design.ControlDesigner, System.Windows.Forms.Design.DLL")]<br />
	public ref class NLCFormDataGridView : System::Windows::Forms::DataGridView {};</p>
<p>It works perfectly! Once again, thank you.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
