|
Pages: [1]
|
 |
|
Author
|
Topic: display the data on the texbox not console (Read 307 times)
|
newbie
Guest
|
rebol [] a-list: [ "aaa" "bbbb" "ccccc" ] view layout [ t: text-list data a-list [ probe face/picked ] button "Select All" [ clear t/picked insert t/picked t/data show t ] button "Clear All" [ clear t/picked show t ] ]
It also outputs the contents of the picked block to the console when you click on a list item. Use Ctrl/click to select more than one item manually and see the output reflect that. Hope this was some help - was answering the question you were asking... But if I want to select only one of the content not select all to be display on the textbox not on the console.. thank you
|
|
|
|
|
Logged
|
|
|
|
Guest
Guest
|
Try This... rebol [] a-list: [ "aaa" "bbbb" "ccccc" ] view layout [ t: text-list data a-list [ f/text: first t/picked ; could be... f/text: first face/picked show f ] f: field button "Select All" [ clear t/picked insert t/picked t/data show t ] button "Clear All" [ clear t/picked show t ] ]
|
|
|
|
|
Logged
|
|
|
|
|
|
Pages: [1]
|
|
|
 |