tags:

views:

24

answers:

1

I'm creating a VB.NET application that includes two radio buttons inside of a groupbox. If the first radio button is selected, a certain tab on a tab form should be enabled. If the second radio button is selected, that tab should be disabled.

Is there a groupbox method that monitors both radio buttons and fires when the selection changes? Or do I need to set up individual methods for each radio button?

+1  A: 

You have to set the event to each individual radio button

RadioButton.CheckedChanged Event

astander