On Jun 30, 2006, at 12:04 PM, Terry Ford wrote:
On Jun 30, 2006, at 9:51 AM, Norman Palardy wrote:
On Jun 30, 2006, at 10:25 AM, Chuck Pelto wrote:
So, how would one write the line to call the action?
rb_no.Action() and self.rb_no.Action()
Don't seem to work.
You don't call events directly
If you want to set a Radio button you set its value and this will
trigger the action event
To be a bit more precise:
Setting the value of a RadioButton to True will trigger its action
event even if its current value is already true.
Setting the value of a RadioButton to False will *not* trigger the
action event.
And, on a similar note:
Setting the Value of a Checkbox to *either* true or false will
trigger its action event even if its current value is already true
or false.
Radio buttons only fire their action events when they are
"selected" (clicked)
Check boxes fire on any change (click) as this acts as a toggle
between true and false (selected or not)
So, yes, you do have to set a radiobutton to TRUE to make it fire its
event
_______________________________________________
Unsubscribe or switch delivery mode:
<http://www.realsoftware.com/support/listmanager/>
Search the archives of this list here:
<http://support.realsoftware.com/listarchives/lists.html>