Exemplo n.º 1
0
 private void bt_luu_Click(object sender, EventArgs e)
 {
     if (isThem == true)
     {
         try
         {
             TheLoaiNghienCuu tl = new TheLoaiNghienCuu();
             tl.ThemTheLoai(this.tb_mtl.Text, this.tb_ttl.Text, ref error);
             Loaddata();
             MessageBox.Show("Đã thêm");
         }
         catch (SqlException)
         {
             MessageBox.Show("Lỗi thêm");
         }
     }
     else
     {
         try
         {
             TheLoaiNghienCuu tl = new TheLoaiNghienCuu();
             tl.CapNhatTheLoai(this.tb_mtl.Text, this.tb_ttl.Text, ref error);
             Loaddata();
             MessageBox.Show("Đã sửa xong!");
         }
         catch (SqlException)
         {
             MessageBox.Show("Lỗi khi sửa");
         }
     }
 }
Exemplo n.º 2
0
 private void bt_capnhat_Click(object sender, EventArgs e)
 {
     try
     {
         TheLoaiNghienCuu tl = new TheLoaiNghienCuu();
         tl.CapNhatTheLoai(this.tb_mtl.Text, this.tb_ttl.Text, ref error);
         Loaddata();
         MessageBox.Show("Đã nhập nhật!");
     }
     catch (SqlException)
     {
         MessageBox.Show("Xảy ra lỗi trong khi cập nhập!");
     }
 }