private void mnuInsert_Click(object sender, EventArgs e)
 {
     try
     {
         frmCus_Group f = new frmCus_Group();
         f.op = "Add";
         f.Form_Load();
         f.ShowDialog();
     }
     catch
     {
     }
 }
 private void mnuEdit_Click(object sender, EventArgs e)
 {
     try
     {
         frmCus_Group f = new frmCus_Group();
         f.op = "Edit";
         f.FillData(Convert.ToInt32(dgvStore.CurrentRow.Cells["ID"].Value));
         f.ShowDialog();
     }
     catch
     {
         frmMessage f = new frmMessage();
         f.flag            = 0;
         f.lblMessage.Text = "گروه انتخابی معتبر نمی باشد";
         f.ShowDialog();
     }
 }