Hi rebollers,

<remainder>When something seems to me not obvious, or difficult to remember,
I made a memo of it.  From time to time, I rewrite this memo too make a FAQ.
I intend to make these FAQ available in a near future. Every new FAQ is
first sent to the reboller for remark and validation.</remainder>

How to initialize a check-box ?

Short answer :
With 'with [data: on]

Problem illustration :

In the following layout, both checks are unchecked, which is the default.

Rebol [title: "FAQ"]
view center-face layout [
 banner "Check-boxes"
 across
 check text "check box n� 1"
 check text "check box n� 2"
]


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


Patrick

 
______________________________________________________________________________
ifrance.com, l'email gratuit le plus complet de l'Internet !
vos emails depuis un navigateur, en POP3, sur Minitel, sur le WAP...
http://www.ifrance.com/_reloc/email.emailif


-- 
To unsubscribe from this list, please send an email to
[EMAIL PROTECTED] with "unsubscribe" in the 
subject, without the quotes.

Reply via email to