private void Form1_Load(object sender, EventArgs e)
        {
            this.ValidateChildren();

            serviceConfigured = (InvalidControls == 0);

            UpdateServiceStatus();

            StartingUp = false;

            OnDelay.InAMoment(CheckForUpdateSilent);
        }
        private void AboutButton_Click(object sender, EventArgs e)
        {
            AboutWindow  aw     = new AboutWindow();
            DialogResult result = aw.ShowDialog();

            aw.Close();

            if (result == DialogResult.OK)
            {
                OnDelay.InAMoment(CheckForUpdateUI);
            }
        }