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

            rpt.Site = this.Site;
            return(rpt);
        }
Esempio n. 2
0
        public void panggilTampilVendor(CrystalReportPrintVendor crvendor)
        {
            FormTampilReport f = new FormTampilReport();

            f.crvendor  = crvendor;
            f.MdiParent = this;
            f.Show();
        }
Esempio n. 3
0
        private void ButtonPrintVendor_Click(object sender, EventArgs e)
        {
            CrystalReportPrintVendor cr = new CrystalReportPrintVendor();

            ((FormParent)this.MdiParent).panggilTampilVendor(cr);
        }