[REBOL] =?iso-8859-1?Q?How_to_change_content_of_text-list=3F?=
From: yogi::turboland::de at: 1-Feb-2003 17:49
Hello,
I have written this test-code:
REBOL[
Title: "listentest3"
]
view layout[
textliste: text-list data ["Apfel" "Birne" "Pflaume"]
button "Liste 1" [
textliste/data: ["eins" "zwei" "drei"]
show textliste
]
button "Liste 2" [
append textliste/data "vier"
show textliste
]
]
If I press directly after starting the programm on button Liste 2, the
string "vier" is added to the text-list in the GUI. But if I press on
the button Liste 1 nothing happens. If I press after that on button
Liste 2, also nothing happens. This looks very strange to me. Is it
possible to assign a new block as content to a text-list?
Thanks for help.
cu, yogi