|
|
|||||||||
|
|||||||||
|
|||||||||
| |
||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
#1
|
|||
|
|||
|
Radio Buttons
Does anyone have an example of scripting a series of radio buttons??? I have been looking on the internet for a start and have not found one.
I have a button on a Form...when clicked I want another box to open with three Radio (Option) buttons. Upon selection it will run one of three different sets of code. I just need a start to create the little window with the radio (option) buttons.... Thanks |
|
#2
|
||||
|
||||
|
Make sure it's in a group box. That's how it should be
Code:
Private Sub button1_Click() if radiobutton1.value = true then call procedure1 elseif radiobutton2.value = true then call procedure2 elseif radiobutton3.value = true then call procedure3 end if End Sub That will do what you want |
![]() |
| Viewing: ASP Free Forums > Programming > Visual Basic Programming > Radio Buttons |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|