Ejemplo n.º 1
0
        private void UpdatesToolStripMenuItem_Click(object sender, EventArgs e)
        {
            StatusBarMessages.SetStatusBarMessageUpdates("Getting latest version");
            UpdaterClass updater = new UpdaterClass();

            StatusBarMessages.SetStatusBarMessageUpdates("Periodically check for updates e.g.weekly");
        }
Ejemplo n.º 2
0
 public void AnalyseFileExistenceResults()
 {
     if (!check_file_existence_results.Bible)
     {
         if (DialogResult.Yes == MessageBox.Show("No Bible was found on your PC. Do you desire to download one?\n\n[This application needs a Bible for maximum functionality]", "Bible missing", MessageBoxButtons.YesNo, MessageBoxIcon.Warning))
         {
             UpdaterClass.DownloadBible();
         }
     }
     if (!check_file_existence_results.VersionFile)
     {
     }
     if (!check_file_existence_results.Walkthroughs)
     {
         MessageBox.Show("Walkthroughs missing");
     }
 }