private void btnChange_Click(object sender, EventArgs e) { //try //{ if (txtName.Text != "") { DialogResult result; result = MessageBox.Show("BẠN CÓ MUỐN SỬA THÔNG TIN COLOR NÀY KHÔNG?", "THÔNG BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { string[] name = { "@id", "@name" }; string[] value = { Color_id.ToString(), txtName.Text }; sqlQuery truyVan = new sqlQuery(); truyVan.update("UPDATE_Color", name, value, 2); MessageBox.Show("Cập nhật thành công"); listView1.Items.Clear(); LoadListView1(); } } else { MessageBox.Show("Hãy chọn một nhân viên bạn muốn thao tác !!", "Warning"); } //} //catch (Exception) //{ //} }
private void btnDelete_Click(object sender, EventArgs e) { if (txtName.Text != "") { DialogResult result; result = MessageBox.Show("BẠN CÓ MUỐN XÓA COLOR NÀY KHÔNG?", "THÔNG BÁO", MessageBoxButtons.YesNo, MessageBoxIcon.Question); if (result == DialogResult.Yes) { string[] name = { "@id" }; string[] value = { Color_id.ToString() }; sqlQuery sql = new sqlQuery(); sql.update("DELETE_Color", name, value, 1); MessageBox.Show("Xóa thành công ."); listView1.Items.Clear(); LoadListView1(); } } else { MessageBox.Show("Hãy chọn một hàng hóa bạn muốn thao tác !!", "Warning"); } }