Re: Help with Jtable please
It's quite possible to do all. For starters though, have you gone through the Swing tutorials yet as it's all explained there with sample code.
Re: Help with Jtable please
Could you post the link, to the tutorial you refer to please ?
Re: Help with Jtable please
How I would personally approach this (although I've never worked with JTable's before), is to use a FileWriter from the JTextField's to a .txt file, and then Scan from the .txt into the JTable, but this would be so the data would be still there when you reload the program. Or if you would just like to keep them there while the program is open, you could use something like this, just taking a stab at the JTextField names because you haven't posted your source code.
Code:
name = nameTF.getText();
then you could just implement a .setText(name) in the JTable.
Re: Help with Jtable please
The tutorials are here: Big Index, and the JTable tutorial is here.
The key to solving your problem is not to work on the whole thing at once, but to solve each individual problem in isolation and one at a time, and then once done, try to put it all together into a single program. Then if you get stuck on an isolated part, it's a lot easier to figure out what's wrong (or to get help from us), compared to if you get stuck in a large program.