Hi Alessandro,
> Can I create a Rebol/View form, separating the contexts inside?
>
Yes, you can do so, although it's somewhat cumbersome:
------------------------------------------------------------------------
rebol []
foo: context [field: none]
bar: context [field: none]
output: does [print ["foo/field:" foo/field/text tab "bar/field:"
bar/field/text]]
view layout probe compose [
across
label "foo/field:"
(bind [field:] in foo 'self) field [output]
return
label "bar/field:"
(bind [field:] in bar 'self) field [output]
]
------------------------------------------------------------------------
HTH,
Christian
--
To unsubscribe from the list, just send an email to
lists at rebol.com with unsubscribe as the subject.