Allen, I just got back to work and had a look at your code. Great! Just what I needed. :) Thanks. I was assuming that 'show mylist was all that I would need, after referring the list to block. I see that the list does not link all its fields back to the block, but copies the block contents into the fields on initialising. Anton. [EMAIL PROTECTED] wrote: > 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 > ] > ] > ]
