Mailing List Archive: 49091 messages
  • Home
  • Script library
  • AltME Archive
  • Mailing list
  • Articles Index
  • Site search
 

[REBOL] Re: View...radio buttons

From: moliad::aei::ca at: 30-Jun-2004 21:06

I may be misunderstanding, but right now, you are checking if the words are true or not, but you are actually checking the pointer to the gadgets themselves. Because they are obviously not none or false, they reply as true. what you have to do is verify if data is true or false try this and tell me if it works evaluate-request: func [][ if radbutchk/data [print "radbutchk"] if radbutadd/data [print "radbutadd"] if radbutdel/data [print "radbutdel"] if radbutver/data [print "radbutver"] if radbutlst/data [print "radbutlst"] return ] ----- Original Message ----- From: "John Dutcher" <[jfdutcher1958--yahoo--com]> To: <[rebolist--rebol--com]> Sent: Wednesday, June 30, 2004 8:29 PM Subject: [REBOL] View...radio buttons
> The function shown to test the radio buttons, also shown, tests true for > all of them....I expected only one...the one selected on the pane. > Thought them to be mutually exclusive ?? >
******************************************************************************** ******