hello,
I have tried this code and it works.the only problem is that i get only the first line of the table and then it dosen't change even i change the selected row.
private void jTable1_mouseClicked(MouseEvent e) {
int selectedRow = jTable1.getSelectedRow();
frame.add(jTextArea1, BorderLayout.CENTER);
frame.setSize(300, 150);
frame.setLocation(500,400);
if (selectedRow>=0){
jTextArea1.append((String)jTable1.getValueAt(selectedRow, 1));
jTextArea1.setVisible(true);
frame.setVisible(true);
}
}