Got it to work Thanks. I knew to update a field or area etc you use the /text modifier but I did not know about /texts with an "s".
-Alan -----Original Message----- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of [EMAIL PROTECTED] Sent: Tuesday, December 20, 2005 7:39 PM To: [EMAIL PROTECTED] Subject: [REBOL] Re: updating a drop list 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 -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject. -- To unsubscribe from the list, just send an email to lists at rebol.com with unsubscribe as the subject.
