private void sua() { try { if (cmbMaPB.Text == "" || txtMaNV.Text == "" || txtThang.Text == "" || txtNam.Text == "" || txtLuongTV.Text == "") { MessageBox.Show("Vui lòng điều mã nhân viên", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { XuLyLuongNVTV xl = new XuLyLuongNVTV(); if (xl.UpdateLuongNVTV(cmbMaPB.Text, txtMaNV.Text, int.Parse(txtThang.Text), int.Parse(txtNam.Text), long.Parse(txtLuongTV.Text), int.Parse(txtSoGioLamThem.Text), int.Parse(txtSoNgayCong.Text))) { MessageBox.Show("Sửa thành công", "Thành công", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Sửa không thành công", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } dgvLuongNVTV.DataSource = xl.LoadLuongNVTV(); } } catch (Exception) { MessageBox.Show("Vui lòng điều đúng thông tin", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void xoa() { try { if (txtMaNV.Text == "" || cmbMaPB.Text == "") { MessageBox.Show("Vui lòng điều mã nhân viên cần xóa", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { XuLyLuongNVTV xl = new XuLyLuongNVTV(); if (xl.DELETELuongNVTV(txtMaNV.Text)) { MessageBox.Show("Xóa thành công", "Thành công", MessageBoxButtons.OK, MessageBoxIcon.Information); } else { MessageBox.Show("Xóa không thành công", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } dgvLuongNVTV.DataSource = xl.LoadLuongNVTV(); } } catch (Exception) { MessageBox.Show("Vui lòng điều đúng thông tin", "Lỗi", MessageBoxButtons.OK, MessageBoxIcon.Error); } }
private void FrmLuongNVTV_Load(object sender, EventArgs e) { XuLyLuongNVTV xl = new XuLyLuongNVTV(); dgvLuongNVTV.DataSource = xl.LoadLuongNVTV(); btnLuu.Enabled = false; btnHuy.Enabled = false; //load comboBox cmbMaPB.DataSource = xl.LoadCmb(); cmbMaPB.DisplayMember = "MaPB"; }