private void DongY() { DateTime date1 = dtNamSinh.Value; DateTime date2 = DateTime.Now; if (txtMaKH.Text == "" || txtHoTen.Text == "") { lbThongBao.Text = "Vui lòng điền đầy đủ thông tin ở mục (*)"; } else if (date1.CompareTo(date2) >= 0) { lbThongBao.Text = "Ngày sinh không được lớn hơn ngày hiện tại"; } else { string NamSinh = dtNamSinh.Value.ToString("MM/dd/yyyy"); string GioiTinh = ""; if (rbNam.Checked == true) { GioiTinh = "Nam"; } if (rbNu.Checked == true) { GioiTinh = "Nữ"; } SqlConnection conn = SQLDatabase.GetDBConnection(); conn.Open(); try { string sql1 = "SELECT COUNT(MAKHACHHANG) FROM KHACHHANG WHERE KHACHHANG.MAKHACHHANG = '" + txtMaKH.Text + "'"; SqlCommand command1 = new SqlCommand(sql1, conn); int check = (int)command1.ExecuteScalar(); if (check == 0) { lbThongBao.Text = ""; string sql2 = "INSERT INTO KHACHHANG(MAKHACHHANG,HOTEN,NAMSINH,GIOITINH,SODIENTHOAI,DIACHI,LOAIKHACHHANG,TIENTICHLUY) VALUES(@MaKH,@HoTen,@NamSinh,@GioiTinh,@SDT,@DiaChi,@LoaiKH,@TienTichLuy)"; SqlCommand command2 = new SqlCommand(sql2, conn); command2.Parameters.AddWithValue("@MaKH", txtMaKH.Text); command2.Parameters.AddWithValue("@HoTen", txtHoTen.Text); command2.Parameters.AddWithValue("@NamSinh", NamSinh); command2.Parameters.AddWithValue("@GioiTinh", GioiTinh); command2.Parameters.AddWithValue("@SDT", txtSoDienThoai.Text); command2.Parameters.AddWithValue("@DiaChi", txtDiaChi.Text); command2.Parameters.AddWithValue("@LoaiKH", "VIP 0"); command2.Parameters.AddWithValue("@TienTichLuy", "0"); command2.ExecuteNonQuery(); string str = "Thông tin Khách Hàng '" + txtHoTen.Text + "' vừa được lưu"; MessageBox.Show(str, "THÔNG BÁO", MessageBoxButtons.OK, MessageBoxIcon.Information); txtMaKH.Text = ""; txtHoTen.Text = ""; txtDiaChi.Text = ""; txtSoDienThoai.Text = ""; } //else //{ // lbThongBao.Text = "Tài Khoản đã tồn tại!"; // txtMaKH.Focus(); //} } catch (Exception ex) { MessageBox.Show(ex.Message); } } ThemMaKH(); }