private void Imprimir() { try { XBAN_FJ_Rpt001_Rpt Reporte = new XBAN_FJ_Rpt001_Rpt(); Reporte.Parameters["Fecha_inicio"].Value = Convert.ToDateTime(ucBa_Menu.get_FchIni()); Reporte.Parameters["Fecha_fin"].Value = Convert.ToDateTime(ucBa_Menu.get_FchFin()); Reporte.Parameters["IdEmpresa"].Value = param.IdEmpresa; Reporte.RequestParameters = false; ReportPrintTool pt = new ReportPrintTool(Reporte); pt.ShowPreviewDialog(); } catch (Exception) { } }
private void Imprimir() { try { XBAN_FJ_Rpt001_Rpt Reporte = new XBAN_FJ_Rpt001_Rpt(); Reporte.Parameters["Fecha_inicio"].Value = Convert.ToDateTime(ucBa_Menu.get_FchIni()); Reporte.Parameters["Fecha_fin"].Value = Convert.ToDateTime(ucBa_Menu.get_FchFin()); Reporte.Parameters["IdEmpresa"].Value = param.IdEmpresa; Reporte.Parameters["p_estado"].Value = (ucBa_Menu.bei_cmb_estado_cheque.EditValue == null) ? "" : ucBa_Menu.bei_cmb_estado_cheque.EditValue; Reporte.p_IdPersona.Value = ucBa_Menu.get_cmbBeneficiario(); Reporte.p_IdBanco.Value = ucBa_Menu.get_idBanco(); Reporte.RequestParameters = false; ReportPrintTool pt = new ReportPrintTool(Reporte); pt.AutoShowParametersPanel = false; printControl1.PrintingSystem = pt.PrintingSystem; Reporte.CreateDocument(); } catch (Exception) { } }