Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
Ranked #107.55K
~6K People Reached
Favorite Forums
Favorite Tags
java x 1

1 Posted Topic

Member Avatar for server_crash

import javax.swing.*; import javax.swing.table.*; public class RemoveRows{ public static void main(String[] args) { new RemoveRows(); } public RemoveRows(){ JFrame frame = new JFrame("Inserting rows in the table!"); JPanel panel = new JPanel(); String data[][] = {{"Vinod","100"},{"Raju","200"},{"Ranju","300"}, {"Rahul","400"},{"Noor","600"}}; String col[] = {"Name","code"}; DefaultTableModel model = new DefaultTableModel(data,col); JTable table = new …

Member Avatar for Layki
0
6K

The End.