I have grouped radio buttons in a pane, selecting one deselects the others.
Each of the rbos has a unique tag, the currently selected rbo tag value is stored in a variable.
How do I detect the change in one of the rbos so I can update the stored value.
Thanks.
Graham
Each of the rbos has a unique tag, the currently selected rbo tag value is stored in a variable.
How do I detect the change in one of the rbos so I can update the stored value.
Thanks.
Graham
B4X:
Dim n As Node
For Each n As Node In paneHist.GetAllViewsRecursive
If n Is RadioButton Then LHis.Add(n)
Next
Hist1.GroupRadioButtons(LHis)
Hist2.GroupRadioButtons(LHis)
Hist3.GroupRadioButtons(LHis)
Hist4.GroupRadioButtons(LHis)
Hist5.GroupRadioButtons(LHis)