private void btnSuasp_Click(object sender, EventArgs e) { try { if (Kiemtraduulieu()) { DTO.Sanpham sp = new DTO.Sanpham(); sp.MASP1 = ID; sp.TENSP1 = txtTensanpham.Text; sp.SOLUONG1 = Int32.Parse(txtSoluong.Text); sp.DONGIA1 = Chuyen(txtDongia); sp.MALOAI1 = Int32.Parse(cbbLoaisanpham.SelectedValue.ToString()); sp.MANCC1 = Int32.Parse(cbbNhacungcap.SelectedValue.ToString()); sp.GIAMGIA1 = Chuyen(txtGiamgia); sp.HINHANH1 = txtTenanh.Text; Luuanh(); if (spb.Suasanpham(sp)) { Hienthisanpham(); btnThemmoisp.Enabled = true; btnSuasp.Enabled = false; btnXoasanpham.Enabled = false; txtSoluong.Enabled = true; ResertCotroll(); } } } catch (Exception ex) { MessageBox.Show(ex.Message); } }
private void btnXoasanpham_Click(object sender, EventArgs e) { if (MessageBox.Show("Bạn có muốn xóa sản phẩm này?", "Thông báo", MessageBoxButtons.YesNo) == DialogResult.Yes) { DTO.Sanpham sp = new DTO.Sanpham(); sp.MASP1 = ID; if (spb.Xoasanpham(sp)) { Hienthisanpham(); } btnThemmoisp.Enabled = true; btnSuasp.Enabled = false; btnXoasanpham.Enabled = false; txtSoluong.Enabled = true; ResertCotroll(); MessageBox.Show("Xóa sản phẩm thành công", "thông báo", MessageBoxButtons.OK); } else { this.Activate(); } }