B4J Question GroupRadioButtons

cstangor

Member
Licensed User
Longtime User
I'm having trouble grouping my radio buttons. I have this, but it doesn't seem to keep more than one button from being activated.

Dim rbl As List
rbl.Initialize
rbl.Add(StopButton)
rbl.Add(LimitButton)
rbl.Add(StopLimitButton)
StopButton.GroupRadioButtons(rbl)
LimitButton.GroupRadioButtons(rbl)
StopLimitButton.GroupRadioButtons(rbl)

Thanks in advance....
 
Top