예제 #1
0
        public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
        {
            HSII rpt = new HSII();

            rpt.Site = this.Site;
            return(rpt);
        }
예제 #2
0
파일: HSII.cs 프로젝트: orette/southville
 public virtual CrystalDecisions.CrystalReports.Engine.ReportDocument CreateReport()
 {
     HSII rpt = new HSII();
     rpt.Site = this.Site;
     return rpt;
 }
예제 #3
0
파일: Report.cs 프로젝트: orette/southville
 private void hSIIToolStripMenuItem_Click(object sender, EventArgs e)
 {
     HSII rpt = new HSII();
     DepEd menu = new DepEd();
     menu.loadDepEdReport(rpt);
     menu.ShowDialog();
 }