Beispiel #1
0
        public static void Main(string[] args)
        {
            if (Debugger.IsAttached)
            {
                // Warning!
                // Do not use the debugger. This can cause a BSOD.
                // This is a known bug in Windows 7, you'll get a BSOD with bug-check code 0x76...
                // More: https://stackoverflow.com/questions/17756824/blue-screen-when-using-ping
                //Debugger.Break();
                //return;
            }

            try
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);

                var notificationIcon = new NotificationIcon();
                notificationIcon.Run();
            }
            catch (Exception ex)
            {
                File.WriteAllText("error.txt", "[PingoMeter crash log]\n\n" + ex.ToString());
                Process.Start("error.txt");
            }
        }
Beispiel #2
0
        public static void Main(string[] args)
        {
            if (Debugger.IsAttached)
            {
                // [!] BSOD 0x0..76 [!]
                // Опасно! Может вызвать синий экран, если остановить процесс отладки.
                Debugger.Break();
                return;
            }

            try
            {
                Application.EnableVisualStyles();
                Application.SetCompatibleTextRenderingDefault(false);

                var notificationIcon = new NotificationIcon();
                notificationIcon.Run();
            }
            catch (Exception ex)
            {
                File.WriteAllText("error.txt", "[PingoMeter crash log]\n\n" + ex.ToString());
                Process.Start("error.txt");
            }
        }