[REBOL] how to refresh fields in a VID list? Re:
From: allen:rebolforces at: 20-Sep-2000 15:48
For some strange reason the demo code had stripped a couple of ][ when I
cut a pasted. Try again.
Cheers
Allen K
REBOL []
block: copy [
["ssql" "www.somewhere.com" "a-o.dll-eUK-osform_template=awake.t" "388"]
["ping" "203.89.213.43" "" "5"]
]
view layout [
across
button "Add Stuff" [append/only block reduce ["Random Data" random
255.255.255.255 "--" random 2000] show mylist]
button "Remove Top" [remove block show mylist]
button "Sort" [sort block show mylist]
return
mylist: list 850x400 80.80.80 [across f1: field f2: field f3: field f4:
field] data block
supply [
;print count ;--for debugging
either none? row: pick head block count [
f1/text: none
f2/text: none
f3/text: none
f4/text: none
][ ; <-- this disapeared in the last post
f1/text: pick row 1
f2/text: pick row 2
f3/text: pick row 3
f4/text: pick row 4
]
]
]