Click here to Skip to main content
15,879,066 members
Articles / Programming Languages / C#

Palantir - Remote Desktop Manager

Rate me:
Please Sign up or sign in to vote.
4.90/5 (93 votes)
6 Aug 2007CPOL2 min read 489K   65.6K   315  
Palantir is an application that allows users to manage remote desktop connections in one window. It also allows users to save existing connections for later use.
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace Palantir
{
    public partial class frmEnterPassword : Form
    {
        public frmEnterPassword()
        {
            InitializeComponent();
        }

        private string _password = "";

        public string password
        {
            get { return _password; }
            set { _password = value; }
        }

        private void btnOK_Click(object sender, EventArgs e)
        {
            if (txtPassword.Text != "")
            {
                _password = txtPassword.Text;
                Close();
            }
            else
            {
                MessageBox.Show("Please specify a password.");
                return;
            }
        }
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Web Developer
Turkey Turkey
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions