private void إضافةمخزنجديدToolStripMenuItem_Click(object sender, EventArgs e)
 {
     using (Addnewstockform myform = new Addnewstockform())
     {
         myform.ShowDialog();
     }
 }
Exemple #2
0
 private void new_stock_btn_Click(object sender, EventArgs e)
 {
     this.Hide();
     using (Addnewstockform myform = new Addnewstockform())
     {
         myform.ShowDialog();
     }
     this.Close();
 }