> > > Problem resolution : > > Rebol [title: "FAQ"] > view center-face layout [ > banner "Check-boxes" > across > check with [data: on] text "check box n� 1" > check with [data: off] text "check box n� 2" > ]
Just using on or off (yes, no, true, false) will suffice.. Rebol [title: "FAQ"] view center-face layout [ banner "Check-boxes" across check on text "check box n� 1" check off text "check box n� 2" ] Cheers, Allen K -- To unsubscribe from this list, please send an email to [EMAIL PROTECTED] with "unsubscribe" in the subject, without the quotes.
