my control is a radiobutton
i have the following code
For Each ctrl In Controls
controljstring = ctrl.Text
'now knowing ctrl is a radio button i want to find
' its checked property which you can do with radio buttons
'but ctrl.checked is not valid
Next
thanks