Yvan:
> How can I keep the old view?
Try this:
view1: view layout
[
text "Titel" FTitel: field
button "OK" [if/else [empty? FTitel/text]
[
view2: view/new layout
[
text "Enter Title"
button "OK" [unview view2]
]
]
[unview/all]
]
]
Notes:
1. I've given the views names so you can unview specific ones
2. note the view/NEW on the inner view
Incidentally: if/else works, but is definitely deprecated in REBOL. Consider
using either instead.
Sunanda
--
To unsubscribe from the list, just send an email to
lists at rebol.com with unsubscribe as the subject.