Results 1 to 3 of 3

Thread: Radio Button List

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Nov 2001
    Location
    Singapore
    Posts
    24

    Unhappy 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??

  2. #2
    Frenzied Member DevGrp's Avatar
    Join Date
    Nov 2001
    Location
    Charlotte, NC
    Posts
    1,256
    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
    Dont gain the world and lose your soul

  3. #3

    Thread Starter
    Junior Member
    Join Date
    Nov 2001
    Location
    Singapore
    Posts
    24
    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

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width