/// <summary>
 /// set the text of all the texboxes in the form
 /// </summary>
 private void SetTextBoxText(string n, string s, string r, string l)
 {
     TextBoxEntryName.Text = n;
     ComboBoxAvailableServers.SelectedIndex = ComboBoxAvailableServers.FindStringExact(s);
     TextBoxRemoteName.Text = r;
     TextBoxLocalPath.Text  = l;
 }