how to add Jscrollpane without header
i have added jscrollpane and it added table header.i don't want to add table header.how i can add jscrollpane without table header.
THX FOR YOUR REPLIES!
i have added jscrollpane and it added table header.i don't want to add table header.how i can add jscrollpane without table header.
THX FOR YOUR REPLIES!
JTable.getTableHeader().setVisible(false);
-or-
JTable.setTableHeader(null);
regards
Aniruddha
thank you very much
it works :)