示例#1
0
 private void btnLuuQuyDinh_Click(object sender, EventArgs e)
 {
     try
     {
         var rows = gridQD.Rows;
         foreach (DataGridViewRow i in rows)
         {
             QuyDinh.Update(new QUYDINH()
             {
                 MaQD   = i.Cells["clmMaQD"].Value.ToString(),
                 GiaTri = Convert.ToInt32(i.Cells["clmGiaTri"].Value)
             });
         }
         MessageBox.Show("Lưu các quy định thành công", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
         GlobalSettings.LoadQuyDinh();
         this.Close();
     }
     catch
     {
         MessageBox.Show("Có lỗi xảy ra", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error);
     }
 }