So if I have Tool_A depending on Tool_B, checking Tool_A will automatically select Tool_B. Here is a diagram of what I mean:
Start Click Tool_A The code selects Tool_B.
[ ] Tool_A [x] Tool_A [x] Tool_A
-> ->
[ ] Tool_B [ ] Tool_B [x] Tool_B One of the requirements on my installer is that if both deselecting Tool_B will deselect Tool_A as well. Start Click Tool_B The code deselects Tool_A.
[x] Tool_A [x] Tool_A [ ] Tool_A
-> ->
[x] Tool_B [ ] Tool_B [ ] Tool_B I have tried coding this, but I am having problems because the intermediate state of both of these situations is the same.I guess I am asking is there a way to determine which section has been clicked? Or is there another way to set up dependencies like this?
Thanks in advance.