public Form1() { // Tracks Exceptions Automatically AppDomain.CurrentDomain.UnhandledException += (s, e) => _watcher.Exception(e.ExceptionObject as Exception); // Track WinForms Exceptions Automatically Application.ThreadException += (s, e) => _watcher.Exception(e.Exception); Config.Enabled = true; InitializeComponent(); comboBoxLicense.SelectedIndex = 0; }