[REBOL] View...radio buttons
From: jfdutcher1958:y:ahoo at: 30-Jun-2004 17:29
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 ??
**************************************************************************************
evaluate-request: func [][
if radbutchk [print "radbutchk"]
if radbutadd [print "radbutadd"]
if radbutdel [print "radbutdel"]
if radbutver [print "radbutver"]
if radbutlst [print "radbutlst"]
return
]
VID code.......
across tab
radbutchk: radio of 'action h2 blue
{Check the winning number below against all my tickets:}
return tab
radbutadd: radio of 'action h2 blue "Add number below to my file for this game"
return tab
radbutdel: radio of 'action h2 blue "Delete number below from my file for this game"
return tab
radbutver: radio of 'action h2 blue "Verify number below is on file for this game"
return tab
radbutlst: radio of 'action h2 blue {List all numbers for this game (no number need be
entered below):}
return
below
John D.