Jump to content

Print extra page


eisenrich

Recommended Posts

Hi, i have a report that is just one page, when i show it to the screen is just one page, but when i send it to the printer it prints two pages, the second is empty

 

i have this report in two computers, previously in both were printed the reports without problem; but in one machine the windows was reinstalled, and in the second java was upgraded from 1.6.1 to 1.6.2; after that both computers print an extra page.

 

Both computers have the same printer.

 

If i show the report in the screen and from the jasperviewer i print it, the extra page is not printed.

 

i don't know if some one had have this kind of problem, i hope some help, thank you

 

 

jasperreports 1.3.4

ireport 2.0.0

java 1.6.2

windows xp sp2 [file name=Factura.jrxml size=21130]http://www.jasperforge.org/components/com_joomlaboard/uploaded/files/Factura.jrxml[/file]

Post edited by: eisenrich, at: 2007/07/24 17:50

Link to comment
Share on other sites

  • Replies 1
  • Created
  • Last Reply

Top Posters In This Topic

Popular Days

Top Posters In This Topic

DONE! DONE! DONE!

 

The error was in my code.

 

When i print to a printer that is not the default one i use:

 

Code:
				PrintServiceAttributeSet psas = new HashPrintServiceAttributeSet();
psas.add(new PrinterName(noDefaultPrinterName, null));

JRPrintServiceExporter exporter = new JRPrintServiceExporter();

exporter.setParameter(JRExporterParameter.JASPER_PRINT, report);
exporter.setParameter(JRPrintServiceExporterParameter.PRINT_SERVICE_ATTRIBUTE_SET, psas);
exporter.setParameter(JRPrintServiceExporterParameter.DISPLAY_PRINT_DIALOG,
printDialog);

exporter.exportReport();

 

instead of:

 

Code:
[code]JasperPrintManager.printReport(report, printDialog);

 

and the first piece of code is the one with error. I will check that later.

 

thank you to all that read this post

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×
×
  • Create New...