예제 #1
0
        private void button3_Click(object sender, EventArgs e)
        {
            this.Hide();
            Manage_Store auds = new Manage_Store(uu);

            auds.Show();
        }
예제 #2
0
        private void metroTile7_Click(object sender, EventArgs e)
        {
            this.Hide();
            Manage_Store ms = new Manage_Store();

            ms.Show();
        }
예제 #3
0
 private void button5_Click(object sender, EventArgs e)
 {
     if (textBox1.Text == "" || textBox2.Text == "" || textBox3.Text == "" || textBox4.Text == "" || textBox5.Text == "")
     {
         MessageBox.Show("You cant Perform this operation with an empty Cell");
     }
     else
     {
         s.DeleteStore(textBox1.Text);
         MessageBox.Show("Store Deletd Successfully");
         this.Hide();
         Manage_Store m = new Manage_Store(uu);
         m.Show();
     }
 }