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

[REBOL] Re: [faq]

From: rebol:optushome:au at: 20-Jan-2002 7:36

> > 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