[REBOL] Re: updating a drop list
From: SunandaDH:aol at: 20-Dec-2005 19:38
Fergus:> I know the face is being refreshed so my problem is were "name_list" does > not seem to be coping the new block.Try this -- note the magic step is to update nam/texts Names: ["Bob" "Jack" "Sue"] name_list: copy names display-face: layout [ label "names:" nam: choice data name_list button "update" [ name_list: copy ["Bob" "Jack" "Sue" "Mary"] nam/texts: copy name_list show nam ] ] view display-face Sunanda