[REBOL] Re: When to define words
From: moeller_thorsten:gmx at: 9-Jul-2001 20:56
Hi Brett,
the code is something like the following:
layout2: layout [ H2 "second layout"
button "Sub" coal [sublayout/pane: sublayout-input show sublayout]
sublayout: box 300x300 coal
]
login: layout [ H2 "first layout"
label "Input: " myfield: field
button "go" [unview/all view layout2]
]
sublayout-input: layout [ H2 "Sublayout"
backcolor red
txt join "Input:" myfield/text
]
view login
In this sample i didn't get the error, but the sublayout didn't show the input as well.
Hope it comes clear what i was asking for.
Thorsten