Beispiel #1
0
        static void Main()
        {
            bool isGoogleSetup = TCOSheetsInterface.Init();

            InputHook.Start();

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

            if (isGoogleSetup == false)
            {
                DialogMessage message = new DialogMessage("Google Sheets Error", "An error occured initializing Google Sheets service.\n\nLogs will not be written to Google Sheets.");
                message.ShowDialog();
            }

            Application.Run(new Form1());

            InputHook.End();
        }