Exemplo n.º 1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            CRAnticiposPorTipo rpt = new CRAnticiposPorTipo();

            rpt.Site = this.Site;
            return(rpt);
        }
Exemplo n.º 2
0
        public static void ReporteDeAnticiposPorTipo(DataSet fuente, String empresa, String version)
        {
            CRAnticiposPorTipo crAnticiposPorTipo = new CRAnticiposPorTipo();

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

            visor.ShowDialog();
        }
Exemplo n.º 3
0
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     CRAnticiposPorTipo rpt = new CRAnticiposPorTipo();
     rpt.Site = this.Site;
     return rpt;
 }
Exemplo n.º 4
0
 public static void ReporteDeAnticiposPorTipo(DataSet fuente, String empresa, String version)
 {
     CRAnticiposPorTipo crAnticiposPorTipo = new CRAnticiposPorTipo();
     crAnticiposPorTipo.SetDataSource(fuente);
     crAnticiposPorTipo.SetParameterValue(crAnticiposPorTipo.Parameter_empresa.ParameterFieldName, empresa);
     crAnticiposPorTipo.SetParameterValue(crAnticiposPorTipo.Parameter_soft.ParameterFieldName, "SOffT " + version);
     FrmReportes visor = new FrmReportes(crAnticiposPorTipo);
     visor.ShowDialog();
 }