<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://zerosandtheone.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>VB.NET : Extended Combobox to better visually handle being disabled</title><link>http://zerosandtheone.com/blogs/vb/archive/2008/05/12/vb-net-extended-combobox-to-better-handle-being-disabled.aspx</link><description>If you do any WinForms programming then chances are you have used comboboxes, and perhaps at one point or another, you disabled one of those comboboxes because you did not want the user to be able to make a selection. This works fine, however I actually</description><dc:language>en</dc:language><generator>CommunityServer 2008 (Build: 30417.1769)</generator><item><title>re: VB.NET : Extended Combobox to better visually handle being disabled</title><link>http://zerosandtheone.com/blogs/vb/archive/2008/05/12/vb-net-extended-combobox-to-better-handle-being-disabled.aspx#830</link><pubDate>Wed, 16 Sep 2009 17:39:14 GMT</pubDate><guid isPermaLink="false">25aead6d-839f-4a6e-811a-c90be434890b:830</guid><dc:creator>Bib34690</dc:creator><description>&lt;p&gt;Super...&lt;/p&gt;
&lt;p&gt;plus fort que Crosoft.&lt;/p&gt;
&lt;p&gt;merci.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://zerosandtheone.com/aggbug.aspx?PostID=830" width="1" height="1"&gt;</description></item><item><title>re: VB.NET : Extended Combobox to better visually handle being disabled</title><link>http://zerosandtheone.com/blogs/vb/archive/2008/05/12/vb-net-extended-combobox-to-better-handle-being-disabled.aspx#762</link><pubDate>Fri, 21 Aug 2009 15:46:53 GMT</pubDate><guid isPermaLink="false">25aead6d-839f-4a6e-811a-c90be434890b:762</guid><dc:creator>software development company</dc:creator><description>&lt;p&gt;That &amp;nbsp;was an inspiring post,&lt;/p&gt;
&lt;p&gt;Keep up the good work&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://zerosandtheone.com/aggbug.aspx?PostID=762" width="1" height="1"&gt;</description></item><item><title>re: VB.NET : Extended Combobox to better visually handle being disabled</title><link>http://zerosandtheone.com/blogs/vb/archive/2008/05/12/vb-net-extended-combobox-to-better-handle-being-disabled.aspx#571</link><pubDate>Mon, 02 Feb 2009 18:42:17 GMT</pubDate><guid isPermaLink="false">25aead6d-839f-4a6e-811a-c90be434890b:571</guid><dc:creator>Matthew Kleinwaks</dc:creator><description>&lt;p&gt;Those 2 buttons are expand to all monitors, and move to other monitor. They are a feature of a program called UltraMon which is a tool that picks up where Windows lacks in support for multiple monitors. Since I run 4 LCDs on my work computer, it is very useful. They show up on all Win32 windows. The program has other nice features, so if you use more than one monitor, you should check it out.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://zerosandtheone.com/aggbug.aspx?PostID=571" width="1" height="1"&gt;</description></item><item><title>re: VB.NET : Extended Combobox to better visually handle being disabled</title><link>http://zerosandtheone.com/blogs/vb/archive/2008/05/12/vb-net-extended-combobox-to-better-handle-being-disabled.aspx#546</link><pubDate>Wed, 21 Jan 2009 04:16:34 GMT</pubDate><guid isPermaLink="false">25aead6d-839f-4a6e-811a-c90be434890b:546</guid><dc:creator>Edneeis</dc:creator><description>&lt;p&gt;What are the extra two buttons in the Title bar (by the Min/Max and Close buttons)?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://zerosandtheone.com/aggbug.aspx?PostID=546" width="1" height="1"&gt;</description></item><item><title>re: VB.NET : Extended Combobox to better visually handle being disabled</title><link>http://zerosandtheone.com/blogs/vb/archive/2008/05/12/vb-net-extended-combobox-to-better-handle-being-disabled.aspx#216</link><pubDate>Mon, 30 Jun 2008 20:08:31 GMT</pubDate><guid isPermaLink="false">25aead6d-839f-4a6e-811a-c90be434890b:216</guid><dc:creator>Matthew Kleinwaks</dc:creator><description>&lt;p&gt;gw,&lt;/p&gt;
&lt;p&gt;after reading your comment again, i realized you were talking about the dropdown button to drop down the list (I should have read it more clearly the first time).&lt;/p&gt;
&lt;p&gt;Yeah that was one of the drawbacks to this workaround. I never really looked too hard at a solution for that, but there may or may not be an easy one to implement.&lt;/p&gt;
&lt;p&gt;I was able to at least mimic the behavior of the VB example in C# though. What was your specific issue with using new versus shadows?&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://zerosandtheone.com/aggbug.aspx?PostID=216" width="1" height="1"&gt;</description></item><item><title>re: VB.NET : Extended Combobox to better visually handle being disabled</title><link>http://zerosandtheone.com/blogs/vb/archive/2008/05/12/vb-net-extended-combobox-to-better-handle-being-disabled.aspx#206</link><pubDate>Sun, 29 Jun 2008 14:06:27 GMT</pubDate><guid isPermaLink="false">25aead6d-839f-4a6e-811a-c90be434890b:206</guid><dc:creator>Matthew Kleinwaks</dc:creator><description>&lt;p&gt;For any methods you want to handle the disabled functionality, you would just override them to act how you want in the case where the control should be disabled.&lt;/p&gt;
&lt;p&gt;As for the C# New versus the VB shadows, I think this may be one of those cases where VB has an upper hand with the way it works and the shadows keyword. I will mess around with it in C# and see about getting this example working.&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://zerosandtheone.com/aggbug.aspx?PostID=206" width="1" height="1"&gt;</description></item><item><title>re: VB.NET : Extended Combobox to better visually handle being disabled</title><link>http://zerosandtheone.com/blogs/vb/archive/2008/05/12/vb-net-extended-combobox-to-better-handle-being-disabled.aspx#192</link><pubDate>Sat, 28 Jun 2008 22:34:33 GMT</pubDate><guid isPermaLink="false">25aead6d-839f-4a6e-811a-c90be434890b:192</guid><dc:creator>gw</dc:creator><description>&lt;p&gt;Nice workaround, but the dropdown button still acts enabled (color, mouseover color) when in disabled mode. &amp;nbsp;In c#, couldn&amp;#39;t get the &amp;quot;new&amp;quot; keword to work on the Enabled property (vs VB Shadows) in such a way that the Set method would get called. &amp;nbsp;Ended up just using the class&amp;#39; base Enabled property since the OnEnabledChanged was overridden (don&amp;#39;t call base.OnEnabledChanged).&lt;/p&gt;
&lt;div style="clear:both;"&gt;&lt;/div&gt;&lt;img src="http://zerosandtheone.com/aggbug.aspx?PostID=192" width="1" height="1"&gt;</description></item></channel></rss>