Exemplo n.º 1
0
        private void ShowBuyerMaster()
        {
            FrmBuyerMaster frmBuy = new FrmBuyerMaster();

            frmBuy.MdiParent = this;
            frmBuy.Show();
        }
Exemplo n.º 2
0
        private void LoadBuyerMaster()
        {
            FrmBuyerMaster frmSeller = new FrmBuyerMaster();

            frmSeller.MdiParent = this.MdiParent;
            frmSeller.Show();
        }
Exemplo n.º 3
0
        private void btnCancel_Click(object sender, EventArgs e)
        {
            FrmBuyerMaster buyerMaster = new FrmBuyerMaster();

            buyerMaster.MdiParent = this.MdiParent;
            buyerMaster.Show();
            this.Close();
        }