Hi - I'm trying to do a dynamic survey app - and am adding RadioButtonList controls for each of the possible questions.
I can iterate through these as below, but how do I get the value of the selected item in the radio button list?
Thanks for any help,
Mark
Sub findAnswers(byval parent as control)
Dim c as control
for each c in parent.controls
if c.gettype() is gettype(RadioButtonList) then
'''found one
end if
if c.HasControls Then
findAnswers(c)
end if
Next
End Sub