_3DNUS.ext_pick.PictureBox1_Click C# (CSharp) Method

PictureBox1_Click() private method

private PictureBox1_Click ( object sender, EventArgs e ) : void
sender object
e EventArgs
return void
        private void PictureBox1_Click(object sender, EventArgs e)
        {
            try
            {
                string cd = Path.GetDirectoryName(Application.ExecutablePath);
                Process.Start(cd + "\\Extensions\\_ext\\dev_zip_compile\\boot_ext.exe");
            }
            catch
            {
                MessageBox.Show("There was an Error when trying to Load the Extension!", "Extension Manager:", MessageBoxButtons.OK, MessageBoxIcon.Error);
            }
        }
    }