public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            CREmpleadosPorFechaDeJubilacion rpt = new CREmpleadosPorFechaDeJubilacion();

            rpt.Site = this.Site;
            return(rpt);
        }
Exemple #2
0
        public static void FechasDeJubilacion(DataSet fuente, String empresa, String version)
        {
            CREmpleadosPorFechaDeJubilacion crFechasDeJubilacion = new CREmpleadosPorFechaDeJubilacion();

            crFechasDeJubilacion.SetDataSource(fuente);
            crFechasDeJubilacion.SetParameterValue(crFechasDeJubilacion.Parameter_empresa.ParameterFieldName, empresa);
            crFechasDeJubilacion.SetParameterValue(crFechasDeJubilacion.Parameter_soft.ParameterFieldName, "SOffT " + version);
            FrmReportes visor = new FrmReportes(crFechasDeJubilacion);

            visor.ShowDialog();
        }
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     CREmpleadosPorFechaDeJubilacion rpt = new CREmpleadosPorFechaDeJubilacion();
     rpt.Site = this.Site;
     return rpt;
 }
Exemple #4
0
 public static void FechasDeJubilacion(DataSet fuente, String empresa, String version)
 {
     CREmpleadosPorFechaDeJubilacion crFechasDeJubilacion = new CREmpleadosPorFechaDeJubilacion();
     crFechasDeJubilacion.SetDataSource(fuente);
     crFechasDeJubilacion.SetParameterValue(crFechasDeJubilacion.Parameter_empresa.ParameterFieldName, empresa);
     crFechasDeJubilacion.SetParameterValue(crFechasDeJubilacion.Parameter_soft.ParameterFieldName, "SOffT " + version);
     FrmReportes visor = new FrmReportes(crFechasDeJubilacion);
     visor.ShowDialog();
 }