I want to Access configuration file from another computer example.
string location = @"\\SERVER\Shared\Ramgy\Settings.config"
// get server from **SERVER** location
this.txthostname.Text = Properties.Settings.Default.server;
// get port from the SERVER location
this.txtport.Text = Properties.Settings.Default.port;
//get username from the SERVER location
this.txtusername.Text = Properties.Settings.Default.username;
// get password from the SERVER location
this.txtpassword.Text = Properties.Settings.Default.password;
// get database from the SERVER location
this.txtdatabase.Text = Properties.Settings.Default.database;