/// <summary> /// Function to print the report /// </summary> public void Print() { AccountLedgerBll bllAccountLedger = new AccountLedgerBll(); try { DataSet dsAccountLedgerReport = bllAccountLedger.AccountLedgerReportPrinting(1, dtFromDate, dtTodate, decAccountGroupId, decLedgerId); frmReport frmReport = new frmReport(); frmReport.MdiParent = formMDI.MDIObj; frmReport.AccountLedgerReportPrinting(dsAccountLedgerReport); } catch (Exception ex) { MessageBox.Show("ALREP5:" + ex.Message, "OpenMiracle", MessageBoxButtons.OK, MessageBoxIcon.Information); } }