private void lnkOpenConfig_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
        {
            MessageBox.Show(this, "Changes to the server name require an application restart.");

            CommonFunctions.OpenDirectory(
                System.IO.Path.GetDirectoryName(ConfigurationManager.OpenExeConfiguration(ConfigurationUserLevel.None).FilePath));
        }
 private void label3_DoubleClick(object sender, EventArgs e)
 {
     CommonFunctions.OpenDirectory(Application.StartupPath);
 }
 private void openApplicationFolderToolStripMenuItem_Click(object sender, EventArgs e)
 {
     CommonFunctions.OpenDirectory(Application.StartupPath);
 }