I want to create a form with several checkboxes where a user will need to choose which tasks to perform. If certain tasks are selected, they must also make an additional selection for which I wanted to use a pair of option buttons to capture their response as it will always be one of two choices. My initial thought was to load a second form with the option buttons after the user clicks OK if any of the aforementioned tasks were selected.
I then started to wonder if it would be possible to do so with just the one form. Can I set the visible property of the option buttons to false unless any one of the specific tasks are currently checked, sort of like a toggle switch where it hides/unhides the buttons right on the fly based on which checkboxes are currently selected?
I then started to wonder if it would be possible to do so with just the one form. Can I set the visible property of the option buttons to false unless any one of the specific tasks are currently checked, sort of like a toggle switch where it hides/unhides the buttons right on the fly based on which checkboxes are currently selected?