Hello
I have 3 frame, in each I have 3 option buttons,
If the user enters option 1, it should make option 4 and option 7 not available
If the user enters option 2, it should make option 5 and option 8 not available, but make rest of the option available
If the user enters option 3, it should make option 6 and option 9 not available, but make rest of the option available
If the user enters option 4, it should make option 1 and option 7 not available, but make rest of the option available
If the user enters option 5, it should make option 2 and option 8 not available, but make rest of the option available
If the user enters option 6, it should make option 3 and option 9 not available, but make rest of the option available
If the user enters option 7, it should make option 1 and option 4 not available, but make rest of the option available
If the user enters option 8, it should make option 2 and option 5 not available, but make rest of the option available
If the user enters option 9, it should make option 3 and option 6 not available, but make rest of the option available
this can be done, by using the following code
Option1.enable = true
Option 4.enable = false
Option7.enable = false
To make it fully work I will need about 27 lines of code, is there a easy way of doing it, please remember that the user will need 3 different option buttons, can we use the if , else statement, and how can we make it work please help me, I really don’t want to write 27 lines of code, mainly because I may have 5 options in each frame that would make it 125 lines of code, please show me a easy method with an example please