public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport() { table rpt = new table(); rpt.Site = this.Site; return(rpt); }
private void button11_Click(object sender, EventArgs e) { RPT.table myReport = new RPT.table(); myReport.SetParameterValue("@MINUTES_ID", this.dataGridView11.CurrentRow.Cells[0].Value.ToString()); RPT.Form6 myForm = new RPT.Form6(); myForm.crystalReportViewer6.ReportSource = myReport; myForm.ShowDialog(); }