R
Rich P
The following 5 radio buttons are contained in a groupbox on a form
Dim arrRad() As RadioButton
arrRad = New RadioButton(){rad1, rad2, rad3, rad4, rad5}
Is there a way to select which of the 5 radio buttons in the array (in
the groupbox) is the checked radiobutton without looping? In MS Access
you can place radiobuttons in a groupbox, and when a radiobutton is
checked - the groupbox acquires a value like 0, 1, 2, ... so you know
which radiobutton was checked without looping. How can I achieve
similar functionality in VB.net (2005) ?
Thanks
Dim arrRad() As RadioButton
arrRad = New RadioButton(){rad1, rad2, rad3, rad4, rad5}
Is there a way to select which of the 5 radio buttons in the array (in
the groupbox) is the checked radiobutton without looping? In MS Access
you can place radiobuttons in a groupbox, and when a radiobutton is
checked - the groupbox acquires a value like 0, 1, 2, ... so you know
which radiobutton was checked without looping. How can I achieve
similar functionality in VB.net (2005) ?
Thanks