コード例 #1
0
 private void funThemLop()
 {
     if (this.cbbMaLop.Text == "")
     {
         MessageBox.Show("Mã Lớp không được để trống.", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
         this.cbbMaLop.Focus();
     }
     else
     {
         if (lopBUS.getLopTheoMaLop(this.cbbMaLop.Text).Count != 0)
         {
             MessageBox.Show("Mã Lớp đã tồn tại.", "Thông Báo", MessageBoxButtons.OK, MessageBoxIcon.Warning);
             this.cbbMaLop.Focus();
         }
         else
         {
             if (lopBUS.themLop(this.cbbMaLop.Text, this.cbbMaChuyenNganh_Lop.SelectedValue.ToString()))
             {
                 MessageBox.Show("Đã thêm xong.");
                 LoadData();
             }
             else
             {
                 MessageBox.Show("Không thể thêm. Lỗi!!!", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Error);
             }
         }
     }
 }