I'm trying to use a table to display some data that a user enters. I have a set number of columns but,I do not want to have set nuber of rows. The data in each row will be different everytime. I would like the rows to be added as the user selects enter. How can I construct a tablemodel to accept this.
Paul Stevens
Ranch Hand
Joined: May 17, 2001
Posts: 2823
posted
0
Look at DefaultTableModel. It as an addRow() method. It will do what you need it to.