Good day!
Could you help me with your advise, how to use checkboxes:
I can already set the visibility of checkboxes (example: set the visible of button "Check1" to false / true)
Now i need to know:
1) How i can set the value (box checked or not) manually (not by clicking on it, but set it in program code)?
2) How can i know a current state of checkbox (checked or not) and use it in expressions?
Thank U!!!!
Operating with checkboxes
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Operating with checkboxes
Code: Select all
set the hilite of button "whateveritsnameis" to true
Code: Select all
set the hilite of button "whateveritsnameis" to fale
to find out its state...
Code: Select all
put the hilite of button "whateveritsnameis" into myVar
Re: Operating with checkboxes
Hi.
When you get that down, play with radio buttons, where the normal behavior is that only one of each group of buttons may be hilited at any one time.
This is different for your question about checkboxes, where one or more than one may be hilited.
Craig Newman
When you get that down, play with radio buttons, where the normal behavior is that only one of each group of buttons may be hilited at any one time.
This is different for your question about checkboxes, where one or more than one may be hilited.
Craig Newman
Re: Operating with checkboxes
Thank you, guys!!!!