Пример #1
0
        private void addLocationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            GV.MODE = Mode.AddCustomerLocation;
            frmCustomerLocation LocationForm = new frmCustomerLocation();

            LocationForm.MdiParent = this;
            LocationForm.Show();
        }
Пример #2
0
        //--------------------------------------------------------------------------------------------------


        private void deleteLocationToolStripMenuItem_Click(object sender, EventArgs e)
        {
            GV.MODE = Mode.DeleteCustomerLocation;
            frmCustomerLocation LocationForm = new frmCustomerLocation();

            LocationForm.MdiParent = this;
            GV.LOCATIONFORM        = LocationForm;
            LocationForm.Show();
        }