Exemple #1
0
        private void priceListToolStripMenuItem1_Click(object sender, EventArgs e)
        {
            FormPriceList newMDIChild = new FormPriceList();

            newMDIChild.MdiParent = this;
            newMDIChild.Show();
        }
Exemple #2
0
        private void MDIParentAEC_Load(object sender, EventArgs e)
        {
            //FormProduct newMDIChild = new FormProduct();
            FormPriceList newMDIChild = new FormPriceList();

            newMDIChild.MdiParent = this;
            newMDIChild.Show();
        }
Exemple #3
0
        private void ShowNewForm(object sender, EventArgs e)
        {
            //FormProduct newMDIChild = new FormProduct();
            FormPriceList newMDIChild = new FormPriceList();

            newMDIChild.MdiParent = this;
            newMDIChild.Show();

            //Form childForm = new Form();
            //childForm.MdiParent = this;
            //childForm.Text = "Window " + childFormNumber++;
            //childForm.Show();
        }