Click here to Skip to main content
15,886,199 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 490.2K   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;
using System.Net;

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

        private void btnSave_Click(object sender, EventArgs e)
        {
            string errorMessage = "";
            if (txtName.Text.Trim() == "")
            {
                errorMessage += "Name can not be left blank.\r\n";
            }
            if (txtSurname.Text.Trim() == "")
            {
                errorMessage += "Surname can not be left blank.\r\n";
            }
            if (txtEmail.Text.Trim() == "")
            {
                errorMessage += "Email can not be left blank.\r\n";
            }
            if (errorMessage != "")
            {
                MessageBox.Show(errorMessage, "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
                return;
            }
            reg.Register r = new Palantir.reg.Register();
            r.Proxy = WebProxy.GetDefaultProxy();
            r.Proxy.Credentials = CredentialCache.DefaultCredentials;
            try
            {
                r.RegisterUser(txtName.Text, txtSurname.Text, txtEmail.Text);
            }
            catch (Exception ex)
            {
                MessageBox.Show("An Error Occured. Please Try Again Later.","Error",MessageBoxButtons.OK,MessageBoxIcon.Error);
                return;
            }
            MessageBox.Show("Registration Successful");
            this.Close();

        }
    }
}

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