Пример #1
0
        private void btnThem_Click(object sender, EventArgs e)
        {
            if (txtMaLoai.Text == "" || txtTenLoai.Text == "")
            {
                MessageBox.Show("Không được để trống thông tin", "Thông Báo");
                return;
            }
            if (LoaiLaptopDAL.Tim(txtMaLoai.Text) != null)
            {
                MessageBox.Show("Mã loại không được trùng", "Thông Báo");
                return;
            }

            if (MessageBox.Show("Bạn có muốn thêm sản phẩm không?", "Thông Báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
            {
                var ML = new LoaiLaptop
                {
                    MaLoai  = txtMaLoai.Text,
                    TenLoai = txtTenLoai.Text
                };
                LoaiLaptopDAL.Them(ML);

                bsLoai.DataSource = LoaiLaptopDAL.LietKe();
                MessageBox.Show("Bạn đã thêm thành công", "Thông Báo");
            }
            else
            {
                MessageBox.Show("Mã LapTop đã tồn tại", "Lỗi");
            }
        }
Пример #2
0
        private void frmQLHangHoa_Load(object sender, EventArgs e)
        {
            bsLaptop.DataSource     = LaptopDAL.LietKe();
            dgvDSHangHoa.DataSource = bsLaptop;

            cboLoai.DataSource    = LoaiLaptopDAL.LietKe();
            cboLoai.DisplayMember = "TenLoai";
            cboLoai.ValueMember   = "MaLoai";
        }
Пример #3
0
 private void btnXoa_Click(object sender, EventArgs e)
 {
     {
         if (MessageBox.Show("Bạn chắc chắn muốn xóa?", "THÔNG BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
         {
             try
             {
                 String matl = txtMaLoai.Text;
                 LoaiLaptopDAL.Xoa(matl);
                 bsLoai.DataSource = LoaiLaptopDAL.LietKe();
                 MessageBox.Show("Bạn đã xóa thành công!!!");
             }
             catch
             {
                 MessageBox.Show("Mã LapTop không tồn tại!!!");
             }
         }
     }
 }
Пример #4
0
        private void btnSua_Click(object sender, EventArgs e)
        {
            if (txtMaLoai.Text == "" || txtTenLoai.Text == "")
            {
                MessageBox.Show("Không được để trống thông tin", "Thông Báo");
                return;
            }
            if (MaLT != txtMaLoai.Text)
            {
                MessageBox.Show("Không được thay đổi mã loại", "Thông Báo");
                return;
            }

            var ML = new LoaiLaptop
            {
                MaLoai  = txtMaLoai.Text,
                TenLoai = txtTenLoai.Text
            };

            LoaiLaptopDAL.Sua(ML);

            bsLoai.DataSource = LoaiLaptopDAL.LietKe();
            MessageBox.Show("Bạn đã thao tác thành công");
        }
Пример #5
0
 private void frmQLLoaiLaptop_Load(object sender, EventArgs e)
 {
     bsLoai.DataSource      = LoaiLaptopDAL.LietKe();
     dgvDSMaLoai.DataSource = bsLoai;
 }