|
|
|||||||||
|
|||||||||
|
|||||||||
| |
|||
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
|
how to make disabling and enabling of radio button linked with each other
I have created a form with so many fields
Resume Evaluation O resume received O resume evaluated O rejected outright O call him for phone interview _____________________ Phone Interview Evaluation O Interviewed by Phone O rejected after phone interview O call him for technical test ______________________ O technical test done O technical test evaluation form completed O accepted technical test O rejected technical test O call him for face to face interview _______________________ O etc etc etc etc What i want is that if rejected outright (in the first para) is clicked... the rest of the radio buttons becomes inactive. If the call him for phone interview is clicked then only the phone interview evaluation forms radio buttons shows up (not yet clicked, but in active state) rest of the forms still disabled. same way if called him for technical test is clicked then technical test evaluation forms should get active but still not clicked... and rest of theform disabled. same way the process should goon for the rest of the form Please help me with coding and how to do the same inthe backend ranbir |
|
#2
|
|||
|
|||
|
Are they individual radio buttons or are they grouped? If they are separate then you can do an onclick event for the control that effect the others.
For instance, if you're not sure what I mean.... Private Sub Radio1_OnClick() If me.Radio1 = true then me.Radio2.enabled = false me.Radio2 = false Else me.Radio2.enabled = true end if End Sub If you are grouping them then you refer to the group control and test the value in the OnClick event. |
![]() |
| Viewing: Dev Articles Community Forums > Databases > Microsoft Access Development > how to make disabling and enabling of radio button linked with each other |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|