private void FormGuppeneditor_Shown(object sender, EventArgs e)
 {
     FormSplash.setProgress(100);
     timer1.Enabled = true;
     if (Groups.Count == 0)
     {
         MessageBox.Show("Sie sind bei keiner Gruppe als verwaltungsberechtigt eingetragen.", "Information", MessageBoxButtons.OK, MessageBoxIcon.Error);
         Application.Exit();
     }
 }
 public FormGuppeneditor()
 {
     InitializeComponent();
     FormSplash.setProgress(50);
     FindMyGroupMemberships();
     FormSplash.setProgress(90);
     LoadAllUser();
     FormSplash.setProgress(95);
     FindMyGroups();
     toolStripStatusLabelVersion.Text = Application.ProductVersion;
 }