Still no joy. If you select a row in a tablebox and hit CTRL-C, you get the entire table. This is the example from the scripting index:
Names Default To Here( 1 );
New Window( "Mountains",
tb = Table Box(
String Col Box( "Mountain",
{"K2", "Delphi", "Kilimanjaro", "Grand Teton"} ),
Number Col Box( "Elevation (meters)", {8611, 681, 5895, 4199} ),
Plot Col Box( "", {8611, 681, 5895, 4199} )
)
);
tb << Set Selectable Rows();