Re: [jasperreports-questions] Export a report to .doc format

2007-12-17 Thread Dieter D'haeyere
You can make use of the JRRtfExporter class ( http://jasperreports.sourceforge.net/api/net/sf/jasperreports/engine/export/JRRtfExporter.html ). Dieter D'haeyere. Manuel Umana-2 wrote: > > Hi, > > I want to export a report to doc or rtf format. I'm searching in > In

Re: [jasperreports-questions] Jasper Report: to display total number of records

2007-12-17 Thread Dieter D'haeyere
There is a variable called REPORT_COUNT which exactly contains what you need I used this variable to decide if a background should be colored or not (alternating) Hope this helps, Dieter D'haeyere unknownEve wrote: > > How can i display the total number of records in

[jasperreports-questions] vertical lines in detail band

2007-12-12 Thread Dieter D'haeyere
I have a problem when generating vertical lines in the detail band. I want to add an uninterupted vertical line in the detail band. I draw a line with the height of the band, but when the band gets repeated (serveral beans in my collection that is sent to the band), there is a tiny small space be

Re: [jasperreports-questions] vertical lines in detail band

2007-12-12 Thread Dieter D'haeyere
(left); line.setY(top); line.setHeight(height); line.setPen(JRDesignLine.PEN_THIN); line.setFill(JRDesignLine.FILL_SOLID); line.setPositionType(positionType); return line; } Dieter D'haeyere