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

            rpt.Site = this.Site;
            return(rpt);
        }
Exemplo n.º 2
0
        private void ButtonCetakPO_Click(object sender, EventArgs e)
        {
            CrystalReportPOVendor cr = new CrystalReportPOVendor();

            cr.SetParameterValue("kode", comboBoxPr.SelectedValue.ToString());
            ((FormParent)this.MdiParent).panggilTampilPO(cr);
        }
Exemplo n.º 3
0
        public void panggilTampilPO(CrystalReportPOVendor crpo)
        {
            FormTampilReport f = new FormTampilReport();

            f.crpo      = crpo;
            f.MdiParent = this;
            f.Show();
        }