Sunday, February 7, 2010

To programers. In Visual Basics 2005 how do I make a 'radio' button make text in a 'label' clear? What's code?

I'm taking a coputer science class and need to know in VB 2005 how to make a radio button make the text in a lebel clear. Also I need to know how to make a difference radio button make the text bold in the label (lbl) as well. Any programers out there know the code for this in Visual Basics 2005?To programers. In Visual Basics 2005 how do I make a 'radio' button make text in a 'label' clear? What's code?
In .NET (and VB.NET), a radio button is really a special type of the CheckBox object. And then you'll want to set it's Text property to an empty string ';';.





If you need more than this, it's really just a matter of firing up Visual Studio, creating a new Windows Forms project and dropping in a CheckBox and playing with its properties in design view.

No comments:

Post a Comment