I have a button group consisting of two buttons that control whether the form is in read-only or read/write mode. When the user changes the mode by clicking one of these buttons, I change the state (readonly or readwrite) of the form programmatically.
But when I change the state of the form without user input, I would like to indicate the current state to the user through the use of these buttons. I would like to do something like the following:
toolbar.buttons("ReadOnly"
.clicked = True
There isn't a 'clicked' property, but is there another way to do something similar?
But when I change the state of the form without user input, I would like to indicate the current state to the user through the use of these buttons. I would like to do something like the following:
toolbar.buttons("ReadOnly"
There isn't a 'clicked' property, but is there another way to do something similar?