//Load this form
        private void Form1_Load(object sender, EventArgs e)
        {
            LoadForm lForm = new LoadForm();
            lForm.ShowDialog();

            gxxlinfothis = LoadForm.gxxlinfo;
            rsinfothis = LoadForm.rsinfo;
            tttinfothis = LoadForm.tttinfo;
        }
 private void pictureBox1_Click(object sender, EventArgs e)
 {
     try
     {
         System.Diagnostics.Process.Start(LoadForm.gxxlPath);
     }
     catch (Exception ex)
     {
         if (MessageBox.Show("Gourmet XXL ist noch nicht installiert! Soll ein Update gemacht werden?", "Fehler", MessageBoxButtons.YesNo, MessageBoxIcon.Warning) == System.Windows.Forms.DialogResult.Yes)
         {
             LoadForm lForm = new LoadForm();
             lForm.ShowDialog();
         }
     }
 }