/// <summary>
        /// Handles the SelectionChangeCommitted event of the cbTenNhanVien control.
        /// </summary>
        private void cbTenNhanVien_SelectionChangeCommitted(object sender, EventArgs e)
        {
            ComboBox comboBox = (ComboBox)sender;
            if ((comboBox.SelectedIndex != -1) && (cbMaNhanVien.SelectedValue != comboBox.SelectedValue))
            {
                cbMaNhanVien.SelectedValue = comboBox.SelectedValue;
            }

            if ((comboBox.SelectedIndex != -1))
            {
                int ID_NV = Int32.Parse(comboBox.SelectedValue.ToString());

                clsPhieuXuatTamVatTu ctpxt = new clsPhieuXuatTamVatTu();

                if (ctpxt.chkNV_no_VT(ID_NV) == true)
                {
                    //MessageBox.Show("NV này còn nợ VT!");
                    btnCheckNVGiuVT.Visible = true;
                    ToolTip1.Show("Nhân viên này còn đang giữ vật tư!\nClick vào button để đưa danh sách VT còn đang nợ vào lưới!", this.btnCheckNVGiuVT, 15, 15, 5000);
                }
                else
                {
                    btnCheckNVGiuVT.Visible = false;
                }

            }
        }