Re: Reporting in GUI format




Manoj Jain schreef:

hi
is there any tool that could be integrated in JFC. in visual basic
there are amny tools, Crystal Report is one of them.

i got one Jasper Report. but is difficult to integrate into JFC frame.
if you have any idea then plz reply with possible
solutions/links/libraries

It's actually very easy to integrate a jasper report. Simply create a
new JRViewer class passing the JasperPrint you generated in its
constructor. JRViewer extends JPanel so i can easily be added to a
JFrame.

new JRViewer(jasperPrint)

Regards,

Bart

.