AnlageIP adresse kann nun im Menu geändert werden

This commit is contained in:
HuskyTeufel
2022-04-13 11:51:37 +02:00
parent 9ee596d1bb
commit a027973358
12 changed files with 378 additions and 20 deletions

View File

@@ -24,6 +24,7 @@ namespace SanSystem
MessageBox.Show("Bitte nur 1 Instanz starten der Software!", "", MessageBoxButtons.OK, MessageBoxIcon.Hand);
Environment.Exit(1);
}
#if !DEBUG
using (Dongle dongle = new Dongle(60))
{
if (dongle.CheckDongleVorhanden())
@@ -40,7 +41,12 @@ namespace SanSystem
MessageBox.Show("Sorry es wurde kein Dongle gefunden!");
Application.Exit();
}
}
#else
Application.EnableVisualStyles();
Application.SetCompatibleTextRenderingDefault(false);
Application.Run(new frmMain());
#endif
}
}
}