private void addLocationToolStripMenuItem_Click(object sender, EventArgs e) { GV.MODE = Mode.AddCustomerLocation; frmCustomerLocation LocationForm = new frmCustomerLocation(); LocationForm.MdiParent = this; LocationForm.Show(); }
//-------------------------------------------------------------------------------------------------- private void deleteLocationToolStripMenuItem_Click(object sender, EventArgs e) { GV.MODE = Mode.DeleteCustomerLocation; frmCustomerLocation LocationForm = new frmCustomerLocation(); LocationForm.MdiParent = this; GV.LOCATIONFORM = LocationForm; LocationForm.Show(); }