private void btnKetNoi_Click(object sender, EventArgs e)
        {
            try
            {
                if (cboTenMay.Text == "")
                {
                    MessageBox.Show("Hãy chọn Tên máy!", "Chú ý!");
                    return;
                }
                if (txtUser.Text == "")
                {
                    MessageBox.Show("Hãy nhập User!", "Chú ý!");
                    return;
                }
                if (txtPass.Text == "")
                {
                    MessageBox.Show("Hãy nhập mật khẩu!", "Chú ý!");
                    return;
                }
                Luu.user   = txtUser.Text.Trim();
                Luu.pass   = txtPass.Text.Trim();
                Luu.server = cboTenMay.Text.Trim();
                KETNOI conn = new KETNOI();

                conn.OpenConnection();
                conn.ClosedConnection();
                MessageBox.Show("Kết nối thành công");
                Thread t = new Thread(new ThreadStart(chayCT));
                t.Start();
                this.Close();
            }
            catch
            {
                MessageBox.Show("Kết nối thất bại");
                return;
            }
        }