private void btnSach_Click(object sender, EventArgs e) { frmSach s = new frmSach(); this.Hide(); s.ShowDialog(); this.Show(); }
private void btnXoaS_Click(object sender, EventArgs e) { if (txbMaSach.Text == "") { MessageBox.Show("Bạn chưa nhập thông tin: Mời bạn kiểm tra lại"); return; } if (MessageBox.Show("Bạn có thật sự muốn xóa Sách? ", "thông báo", MessageBoxButtons.OKCancel) != System.Windows.Forms.DialogResult.Cancel) { DeleteSach(txbMaSach.Text); frmSach f = new frmSach(); this.Hide(); f.ShowDialog(); } }
private void btnCapNhatS_Click(object sender, EventArgs e) { if (txbMaSach.Text == "") { MessageBox.Show("Bạn chưa nhập thông tin: Mời bạn kiểm tra lại"); return; } string MaLS = ExportMaLS(cbbLoaiSach.Text); string MaTG = ExportMaTG(cbbTGia.Text); string MaNXB = ExportMaNXB(cbbNXB.Text); int SL = (int)Convert.ToInt32(txbSoLuong.Text); InsertSach(txbMaSach.Text, txbTenSach.Text, MaLS, MaTG, MaNXB, SL); frmSach f = new frmSach(); this.Hide(); f.ShowDialog(); }