Link to home
Start Free TrialLog in
Avatar of subrata_das6478
subrata_das6478

asked on

selecting and de-selection of radio button in vb

I want to make the radio button as toggle button. means when i selects that first time and select it second time it should be de-selected on clicking it.
Pls provide code in VB
its urgent!!!
Avatar of nurbek
nurbek

If myradio.value Then
    myradio.value = False
Else
    myradio.value = True
End If
ASKER CERTIFIED SOLUTION
Avatar of stu_pb
stu_pb

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
SOLUTION
Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
I think dividing the points between RanjeetRain, Marc Johnston and myself is appropriate.

Thanks.