Issues in JTable

i want to print a jtable, the problem is i wish to print that table without any horizontal and vertical lines.there are methods showHorizontalLines and showVerticalLines but how to use this.......
[210 byte] By [MSSLa] at [2007-11-27 2:55:09]
# 1

just set the show lines to false...

jtable.setShowGrid(false); // you can set the whole grid to invinsible

// or use the two methods u mentioned to hide the lines like this

jtable.setShowHorizontalLines(false); // don't show horizontal lines

jtable.setShowVerticalLines(false); // don't show vertical lines

izziieea at 2007-7-12 3:31:39 > top of Java-index,Java Essentials,Java Programming...
# 2
thanks ya.. i will check it and reply u..........
MSSLa at 2007-7-12 3:31:39 > top of Java-index,Java Essentials,Java Programming...