radio button vb.net 1.1
-
add a class to your project which inherites radiobutton add this code to your class .to disable the event do not write anything in the subroutine.
Protected Overrides Sub OnEnabledChanged(ByVal e As System.EventArgs)
End Sub
-- modified at 15:42 Friday 14th September, 2007
A.E.K
You might want to review your post and clean it up a bit. Noone can read it unless they reply to it.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
mshytech wrote:
have a radio button that is disabled on form load, why is the font color(forecolor) different when disabled
Because it's disabled. This is standard Windows functionality.
mshytech wrote:
and how do I change it?
You don't. There is no property to change the disabled foreground color. You can simulate the "normal" colors with a disabled RadioButton by leaving it enabled, then handling the Click event of the RB and resetting it's Checked property to the opposite of what it is:
RadioButton1.Checked = Not RadioButton1.Checked
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
You might want to review your post and clean it up a bit. Noone can read it unless they reply to it.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
Originally, your post just had the peach colored bar, with no code in it.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
I have a radio button that is disabled on form load, why is the font color(forecolor) different when disabled and how do I change it? Thanks. :wtf: mshytech
hi first u write the code and in load form for line u disable radio button not first ok your problem is sol ve
-
hi first u write the code and in load form for line u disable radio button not first ok your problem is sol ve
You might want to rethink that post. He wants the control disabled, but not showing the color scheme that comes with it. Setting the Enabled property to False at any time will change the colors to something he doesn't want.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
You might want to rethink that post. He wants the control disabled, but not showing the color scheme that comes with it. Setting the Enabled property to False at any time will change the colors to something he doesn't want.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007Dave Kreskowiak wrote:
You might want to rethink that post.
Boy, someone really missed the point of the original post :laugh:
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
-
Dave Kreskowiak wrote:
You might want to rethink that post.
Boy, someone really missed the point of the original post :laugh:
"Real programmers just throw a bunch of 1s and 0s at the computer to see what sticks" - Pete O'Hanlon
Yeah, I was standing behind the guy when he fired, and still had to duck as the bullet wizzed by!
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
You might want to rethink that post. He wants the control disabled, but not showing the color scheme that comes with it. Setting the Enabled property to False at any time will change the colors to something he doesn't want.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
You might want to rethink that post. He wants the control disabled, but not showing the color scheme that comes with it. Setting the Enabled property to False at any time will change the colors to something he doesn't want.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
FYI http://pages.videotron.com/emoreau/[^] Under 2005 articles - Colors of disabled controls.
OK, so? I gave him the quick and dirty method. From his original post, it didn't sound he had much knowledge, actually none, of the intricacies of creating his own controls to do this.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007 -
OK, so? I gave him the quick and dirty method. From his original post, it didn't sound he had much knowledge, actually none, of the intricacies of creating his own controls to do this.
A guide to posting questions on CodeProject[^]
Dave Kreskowiak Microsoft MVP Visual Developer - Visual Basic
2006, 2007The Original post was from me. And yes, I don't have much knowledge with creating vb.net 1.1 controls, but it doesn't mean I can't figure it out by searching the web for information from nice people like you. :) I thought I would post a link to some more detailed info for others to use. Have a great day! ms-hytech