Hi Silvia,

SB> I'm realizing a script in which when a button "Browse" is clicked, you can
SB> choose one or more files, display them in a text-list and once you did this
SB> create a backup of the selected files in another path.

SB> My question is:

SB> Once selected the file(s) how can I display the names in my text-list?

Something like this?

view layout [
        lst: text-list 
        button "Select..." [
                files: request-file
                if files [
                        lst/line-list: none
                        lst/data: files
                        show lst
                ]
        ]
]

-- Gregg                         

-- 
To unsubscribe from the list, just send an email to 
lists at rebol.com with unsubscribe as the subject.

Reply via email to