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
1 Posted Topic
Re: 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 … |
The End.