Exemple #1
0
        private void mnuMaintenanceMaintainCustomers_Click(object sender, EventArgs e)
        {
            Form customerMaintForm = new frmCustomerMaintenance();

            customerMaintForm.MdiParent = this;
            customerMaintForm.Show();
        }
Exemple #2
0
 private void mnuMaintenanceMaintainCustomers_Click(object sender, EventArgs e)
 {
     Form customerMaintForm = new frmCustomerMaintenance();
     customerMaintForm.MdiParent = this;
     customerMaintForm.Show();
 }
Exemple #3
0
        private void customerMaintenanceToolStripMenuItem_Click(object sender, EventArgs e)
        {
            frmCustomerMaintenance cm = new frmCustomerMaintenance();

            cm.ShowDialog();
        }