Package br.com.visualmidia.ui.report

Examples of br.com.visualmidia.ui.report.ManagerConferReport


    reportButton.setEnabled(false);
   
    reportButton.addListener(SWT.Selection, new Listener() {
      JasperPrint jasperPrint;
      public void handleEvent(Event arg0) {
        ManagerConferReport managerConferReport = new ManagerConferReport();
        try {
          jasperPrint = managerConferReport.getJasperPrint(new GDDate(initialDateText.getText()), new GDDate(finishDateText.getText()));
          GDWindowControl.getInstance().createReport(jasperPrint, "Descontos concedidos no recebimento de parcelas", false);
        } catch (JRException e) {
          e.printStackTrace();
        }
      }
View Full Code Here

TOP

Related Classes of br.com.visualmidia.ui.report.ManagerConferReport

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.