Hi. This is what I have now:
Is there another way of checking the Radiobutton(i).checked where i is in the for next loop?
Please advise. Thank you.
VB.NET:
if RadioButton1.Checked then
textbox1.text = "button1 checked"
else
textbox1.text = "button1 not checked"
if RadioButton2.Checked then
textbox1.text = "button2 checked"
else
textbox1.text = "button2 not checked"
Is there another way of checking the Radiobutton(i).checked where i is in the for next loop?
VB.NET:
for (i=1 to 2)
if (RadioButton(i).checked) then
textbox1.text = "button" & i &" checked"
else
textbox1.text = "button" & i &" not checked"
next i
Please advise. Thank you.