private void btnxoatatca_Click(object sender, EventArgs e)
        {
            string sql;

            if (tc.Rows.Count == 0)
            {
                MessageBox.Show("Không còn dữ liệu", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
            if (MessageBox.Show("Bạn có chắc chắn muốn xoá tất cả bản ghi không?", "Warning!", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == DialogResult.Yes)
            {
                sql = "DELETE TRUY_CAP";
                Ctrl.RunSqlDel(sql);
                LoadDataGridView();
                ResetValues();
                btnxoa.Enabled    = false;
                DANGNHAP.thaotac += "Xoá tất cả, ";
            }
            else
            {
                return;
            }

            sql = "SELECT * from TRUY_CAP";
            Ctrl.FillCombo(sql, cbTenTK, "TenTK", "TenTK");
            cbTenTK.SelectedIndex = -1;

            lblkqtktc.Text = "(*) Tìm kiếm theo 'tên tài khoản'!";
        }
        private void btnxoa_Click(object sender, EventArgs e)
        {
            string sql;

            if (tc.Rows.Count == 0)
            {
                MessageBox.Show("Không còn dữ liệu", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
            if (txtmatc.Text.Trim() == "")
            {
                MessageBox.Show("Bạn chưa chọn bản ghi nào", "Thông báo", MessageBoxButtons.OK, MessageBoxIcon.Information);
                return;
            }
            if (MessageBox.Show("Bạn có muốn xoá bản ghi này không?", "Thông báo", MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes)
            {
                sql = "DELETE TRUY_CAP WHERE IdTC='" + txtmatc.Text + "'";
                Ctrl.RunSqlDel(sql);
                LoadDataGridView();
                ResetValues();
                btnxoa.Enabled    = false;
                DANGNHAP.thaotac += "Xoá, ";
            }

            sql = "SELECT * from TRUY_CAP";
            Ctrl.FillCombo(sql, cbTenTK, "TenTK", "TenTK");
            cbTenTK.SelectedIndex = -1;

            lblkqtktc.Text = "(*) Tìm kiếm theo 'tên tài khoản'!";
        }
        private void QLTRUYCAP_Load(object sender, EventArgs e)
        {
            string sql = "select * from TRUY_CAP";

            sql = "SELECT * from TRUY_CAP";
            Ctrl.FillCombo(sql, cbTenTK, "TenTK", "TenTK");
            cbTenTK.SelectedIndex = -1;
            LoadDataGridView();
            btnxoa.Enabled = false;
            lblkqtktc.Text = "(*) Tìm kiếm theo 'tên tài khoản'!";
        }