[Ikvm-developers] Select Printer in JasperReports Preview
Brought to you by:
jfrijters
|
From: Michael K. <mic...@km...> - 2015-06-30 17:09:20
|
My Problem is, that the PrinterSelect-Box came up if i debug the code in exclipse (java). Then I to the compile with IKVM and the PrinterSelect didn’t came up.
My java-application have following code to show the preview:
// Vorschau anzeigen
if (reportData.preview == true) {
logger.info("Report Generated in " + (System.currentTimeMillis() - startTime) + "ms");
// isExitOnClose = wenn die Vorschau geschlossen wird, dann wird
// die Anwendung beendet (JVM geschlossen)
JasperViewer.viewReport(jasperPrint, false);
} else {
After call the “.viewReport” all routines are from the jasper-libraries
|