private void button6_Click(object sender, EventArgs e)
        {
            this.Hide();
            AddLocations add = new AddLocations();

            add.Show();
        }
Пример #2
0
        private void button11_Click(object sender, EventArgs e)
        {
            this.Close();
            AddLocations frm = new AddLocations();

            frm.Show();
        }
Пример #3
0
 private void button6_Click(object sender, EventArgs e)
 {
     if (a1 == null || a1.IsDisposed)
     {
         a1 = new AddLocations();
     }
     a1.Show();
     this.Hide();
 }
        private void button6_Click(object sender, EventArgs e)
        {
            this.Hide();
            AddLocations add = new AddLocations();

            add.Show();

            sidePanel.Height = button6.Height;
            sidePanel.Top    = button6.Top;

            //Hide the Drop down Menu
            hidepanel1();
        }
Пример #5
0
 public Statistics(AddLocations a)
 {
     InitializeComponent();
     this.a1 = a;
 }