[REBOL] Re: How to create different context in View?
From: btiffin:rogers at: 24-Jul-2007 17:02
Hi,
Anton Rolls came up with this for a RebGUI question I had
oneset: context [field: none]
twoset: context [field: none]
; Anton's magic to set-word! trick
view layout compose [
=C2=A0 =C2=A0 (to set-word! in oneset 'field) field
=C2=A0 =C2=A0 (to set-word! in twoset 'field) field
=C2=A0 =C2=A0 btn "Show the fields" [alert oneset/field/text =C2=A0alert twoset/field/text]
]
On Tuesday 24 July 2007 15:58, Christian Ensel wrote: