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

            rpt.Site = this.Site;
            return(rpt);
        }
 private void peliculasToolStripMenuItem_Click(object sender, EventArgs e)
 {
     ReporteForm reporte = new ReporteForm();
     ReportePelicula rpt = new ReportePelicula();
     reporte.reportecrystalReportViewer.ReportSource = rpt;
     reporte.reportecrystalReportViewer.RefreshReport();
     reporte.ShowDialog();
 }
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     ReportePelicula rpt = new ReportePelicula();
     rpt.Site = this.Site;
     return rpt;
 }