> Hi all,
>
[quoted text clipped - 6 lines]
>
> Marc Van Laer
To copy selected table rows, you can use Java's built-in support:
TransferHandler th = myTable.getTransferHandler();
if (th != null) {
Clipboard cb = Toolkit.getDefaultToolkit().getSystemClipboard();
th.exportToClipboard(myTable, cb, TransferHandler.COPY);
}
If you want to copy the entire table contents, you probably have to
write it yourself. Have a look at the source code of the nested class
TableTransferHandler in javax.swing.plaf.basic.BasicTableUI.

Signature
Regards,
Roland de Ruiter
___ ___
/__/ w_/ /__/
/ \ /_/ / \
Marc Van Laer - 11 Mar 2005 16:19 GMT
Thanks Roland,
This did the trick...Perfect
Much obliged,
Van Laer Marc