[REBOL] Re: ListView in REBOL/View
From: gjones05:mail:orion at: 29-Jan-2001 9:29
Hi, Peter,
Multiple selections in text-list can be made in Windows by holding the
Control key while making selections. The default text-list supports this
feature. After selections are made, then the values may be found in that
list's "picked" attribute. For example:
view layout [
tl1: text-list "a" "b" "c"
button "Copy Selection" [tl2/lines: tl1/picked show tl2]
tl2: text-list
]
Select any combination of tl1 and then click the button. The selected
values will be transfered to the second list in this example.
For additional resources, check out Allen Kamp's "View FAQ" at:
http://www.rebolforces.com/view-faq.html
There is also an archived REBOL/View User's guide at:
http://www.rebolforces.com/archive/view099users.html
This guide serves as a nice introduction but may be out of date or
incomplete in some sections.
Hope this helps.
--Scott