I am using an example and trying to make it work with my own program. I have a JComboBox with the names of my database tables in. I am able to display them by printing the result set but i now want to add them to a JTable. Below is what i currently have, but it doesn't return anything, the scren stays blank.
As far as I can see you aren't adding this JTable to your GUI. Did you perhaps already create a JTable object, assign it to that dTable variable, and put it into your GUI in some initialization code? If so, then assigning another JTable object to the variable won't have any effect on that. Remember, the components you add into your GUI are objects, not variables.
So (again, if I guessed right) don't create a new JTable. Use the one you already have instead:
Paul Clapham wrote:
As far as I can see you aren't adding this JTable to your GUI. Did you perhaps already create a JTable object, assign it to that dTable variable, and put it into your GUI in some initialization code? If so, then assigning another JTable object to the variable won't have any effect on that. Remember, the components you add into your GUI are objects, not variables.
So (again, if I guessed right) don't create a new JTable. Use the one you already have instead:
Ahh yes, you did guess right. It is working now i am using dTable.setModel().
Thank You!
current ranch time (not your local time) is
Jun 12, 2024 01:42:12