Пример #1
0
        /// <summary>
        /// Notifies the user a scheduled install has completed.
        /// </summary>
        private void notifyScheduledTaskComplete()
        {
            msgboxLogo msgbox = new msgboxLogo();

            msgbox._message = "Download complete, the installer will run at the time and date you specified. If your computer isn't switched on at the time of install , the installer will run whenever possible.";

            formflash.FlashWindowEx(msgbox);

            msgbox.ShowDialog();
        }
Пример #2
0
        /// <summary>
        /// Notifies the user a scheduled install is about to take place.
        /// </summary>
        private void notifyUserInstallReady()
        {
            msgboxLogo box = new msgboxLogo();

            box._message = _applicationName + " will now install";

            formflash.FlashWindowEx(box);

            box.Show();
        }
Пример #3
0
        private void txtbtnYes_Click(object sender, EventArgs e)
        {
            if (rbInstallNow.Checked == true)
            {
                _messageBox = true;
                ActiveForm.Close();
            }
            else if (rbInstallLaterDate.Checked == true)
            {
                _messageBox       = true;
                _scheduledInstall = true;

                msgboxLogo msgbox = new msgboxLogo();
                msgbox._message = "The installer will now download to your computer ready for install when you specify, you will be asked when you would like to installer to run after it's downloaded.";
                msgbox.ShowDialog();

                ActiveForm.Close();
            }
        }