I have a risk determination table I’m trying to put into custom menu using UD02. I want the corresponding epiShape to update to warning if their respective checkboxes are checked. So if chkBoxLikely.checked = true and chkBoxCritical.checked = true then shapeCL.Status = StatusTypes.Warning.
Now, I know how to do this using an If/then/else statement so I have 9 lines covering all scenarios. My question is what event handler would I use such that when the second checkbox is selected, the shape updates? I have tested it under a group_click event but that requires clicking the group every time.
Am I going to need to create all cases under all 6 click events?