-
Radio Button List
Sorrie for disturbing. But i really need help for my current project. Currently
i'm dealing with a radio button list and some tables. What i wish to do is
to show the visibilty of the rite table of the selected choice. And i wish
the changes will be made instantly without having to click any button. Is
this possible??
-
Hello.
If you want to change the visibility property of the table, you would use the radiobutton_checkedchanged method.
Here is an example
Code:
Private Sub RadioButton2_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles RadioButton1.CheckedChanged
Table.Visible = False
End Sub
The table or whatever you wanted to become visible would without clicking on the button. The select state just has to be changed.
Hope that helps
-
Thank you very much for ur help. But I'm dealing with radio button list which doesn't support the method CheckedChanged. Do you noe any other way that can solve the problem for radio button list?
Thank you for helping!
Regards,
Karen