How do I create an Option?

Hello

I am tiring to create an option with checkboxes.
The .Click is not an option.

So basically if

If Checkbox1.Checked = True
then Checkbox2.Checked = False
elseIf Checkbox2.Checked = True
then Checkbox1.Checked = False

Thank you

Hello there,

You can do it this way, which is simpler. There isn't an event called CheckBox.Click, but we can make use of the CheckBox.Changed event to indicate what happens when the user tapped and released a checkbox.

blocks (14)

2 Likes

This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.