Jump to content
We've recently updated our Privacy Statement, available here ×

narsis1313

Members
  • Posts

    12
  • Joined

  • Last visited

 Content Type 

Profiles

Forum

Events

Featured Visualizations

Knowledge Base

Documentation (PDF Downloads)

Blog

Documentation (Test Area)

Documentation

Dr. Jaspersoft Webinar Series

Downloads

Everything posted by narsis1313

  1. Hi, I have to design an A3 size template, because my printer is a duplex printer and i should print each A3 page on both sides of an A4 page. so my template is A3 to containes two A4 size pages. I put each subreports on a group header with size 595(A4 size) and my problem not solved. Sincerelly, Narsis.
  2. Hi all. I have an A3 size report with two A4 size subreports inside it's detail band. I put each subreport in a group "Starting on a new page". But when i run it, i have an A3 size page containing 2 subreports.(I mean the subreports don't start on a new page). Please let me know if anybody knows where the problem is. Sincerelly, Narsis.
  3. I have a report with one master report and two subreports. I want each subreport to be printed in a new page and so, put them in groups starting in a new page. I have also a duplex printer that prints in both sides of an A4 page. When i printed them, both sides where printed in one page, so i set "Min Height to Start a New Page" to 600 pixels, height of an A4 page. Now, it prints both sides in 2 sides of A4, but the back side in reverse order. In another word, the back side is printed with 180 degree rotation. I changed all of printer's configs and my problem no solved. Is there anybody that know where the problem is. Sincerely, Narsis.
  4. I have a report with one master report and two subreports. I want each subreport to be printed in a new page and so, put them in groups starting in a new page. I have also a duplex printer that prints in both sides of an A4 page. When i send the report to printer, it prints front side in correct place. But tha back side in reverse order. In another word, the back side is printed with 180 degree rotation. I changed all of printer's configs and my problem no solved. Is there anybody that know where the problem is. Sincerely, Narsis.
  5. Hi Vladimir. Did you solve your problem. It's also my problem and i want to know if there is any solution to it. Sincerely, Narsis.
  6. Hi all, another question relating to both_side_printers. When generating multiple pages report I set in the Printer Options "Print on boht sides/ Landscape" (rotation of the page along the left border of the paper). Jasper prints on two sides with rotation along the upper side of the paper. And on the contrary, when asking to print along the upper side, it rotates the text along the left side. I checked the printer driver by specifying the same parameters when printing Word documents. Everything works correctly in this case, and the rotation is performed through the desired part of the paper. Would somebody please help me? This was someone else's question and i found it is my problem too. Sincerely, Narsis.
  7. There is something to be noticed : My master report just containes two subreport elements. I pass all of the fields to Master and pass them from master to subreports as params. But i just get a blank page containing nothing. Although, all of the data are passed to Master correctly. Sincerely, Narsis.
  8. Hi, I want to know if it is possible to send a jasper created A3 report page to a printer and it be printed on 2 A4 pages. In another word, i have a A3 size template and fill it with data and want it to be printed on both sides of an A4 size paper. Sincerely, Narsis.
  9. Hello all, I have a report with 2 subreports. When i test report or subreports individually, everything is ok and 2 pages are printed. But when i want to test all of them, a blank page is printed. I think because parameters are not passed from master report to subreports. Is there anyone that can help me? This is my code : /////////////////////////\\\\\\\\\\\\ private void printCard(List lst) { Map parameters = new HashMap(); try{ InputStream frontInputStream = getClass().getResourceAsStream("Sub1.xml"); InputStream backInputStream = getClass().getResourceAsStream("Sub2.xml"); InputStream frontBackInputStream = getClass().getResourceAsStream("Master_Report.xml"); JasperDesign frontJasperDesign = JasperManager.loadXmlDesign(frontInputStream); JasperDesign backJasperDesign = JasperManager.loadXmlDesign(backInputStream); JasperDesign frontBackJasperDesign = JasperManager.loadXmlDesign(frontBackInputStream); JasperReport frontJasperReport = JasperManager.compileReport(frontJasperDesign); JasperReport backJasperReport = JasperManager.compileReport(backJasperDesign); JasperReport frontBackJasperReport = JasperManager.compileReport(frontBackJasperDesign); parameters.put("FrontCoverReport",frontJasperReport); parameters.put("BackCoverReport",backJasperReport); JRDataSource frontBackJRDataSource = new CustomDataSource(lst); JasperPrint frontBackJasperPrint = JasperManager.fillReport(frontBackJasperReport, parameters, frontBackJRDataSource); JasperPrintManager.printReport(frontBackJasperPrint, false); } catch(Exception ex) { logExceptions(ex); } } ////////////////////\\\\\\\\\\ Sincerely, Narsis.
  10. Hi. I'm writing a sample reporting application using Jasper Report. I send my reports to printer using codes like this : ////////****\ JasperPrintManager.printReport(...); ////////****\ I want to check if the print has done successfully and after it, update something in my db. Is there anyway to check the printer problems like PaperJam. Sincerely, Narsis.
  11. Hi. I'm writing a sample reporting application using Jasper Report. I send my reports to printer using codes like this : ////////****\\\\ JasperPrintManager.printReport(...); ////////****\\\\ I want to check if the print has done successfully and after it, update something in my db. Is there anyway to check the printer problems like PaperJam. Sincerely,
  12. Hi. I'm writing a sample reporting application using Jasper Report. I send my reports to printer using codes like this : ////////****\\\\ JasperPrintManager.printReport(...); ////////****\\\\ I want to check if the print has done successfully and after it, update something in my db. Is there anyway to check the printer problems like PaperJam.
×
×
  • Create New...