Hi all,
I am Doing project in Java Swing. I need a help line for using scroll pane with table and textarea.
This I have done as coding It never works well.
final String[] colheads={"Book Name","Due Date"};
final Object[][] data={{"",""},{"",""},{"",""},{"",""},{"",""},{"",""}};
JTable table=new JTable(data,colheads);
JScrollPane jsp=new JScrollPane(table);//,ScrollPaneConstants.VERTICAL_SCROLLBAR_ALWAYS,ScrollPaneConstants.HORIZONTAL_SCROLLBAR_ALWAYS);
panel.add(jsp);
getContentPane().add(panel);
2007-02-17
18:27:32
·
2 answers
·
asked by
Anonymous