1
This repository has been archived on 2023-03-26. You can view files and clone it, but cannot push or open issues or pull requests.
saviour-backup-system/Saviour Backup System/setup.cs

53 lines
1.7 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
2014-08-02 10:48:14 +01:00
using System.ComponentModel;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading;
using System.IO;
2014-08-02 10:48:14 +01:00
using System.Windows.Forms;
namespace Saviour_Backup_System
{
class setup
{
public static string[] runtimeArguements = null;
public static mainWindow MW;
public static notificationIcon icon;
public static splashScreen SS;
public static addBackupWizard ABW;
public static string username = Environment.UserName; //snapshots the username
2014-11-07 00:39:59 +00:00
public static void initProgram(string[] args)
2014-08-02 10:48:14 +01:00
{
runtimeArguements = args;
SS = new splashScreen();
try { SS.display((args[0] == "STARTUP")); }
catch { SS.display(false); } //if it errors, run it as false
Thread.Sleep(2000); //add in other code here, just for placeholder!
SS.Close();
SS.Dispose();
icon = new notificationIcon();
MW = new mainWindow();
2014-11-10 14:52:04 +00:00
//databaseTools.init();
MW.showDisplay();
Application.Run(MW);
2014-08-02 10:48:14 +01:00
}
2014-11-07 00:39:59 +00:00
2014-08-02 10:48:14 +01:00
public static void closeProgram()
2014-08-02 10:48:14 +01:00
{
string exitMessage = "Are you sure you want to close Saviour Backup System?\nAll copying backups and backup scanning will cease.";
2014-11-06 10:22:28 +00:00
DialogResult result = MessageBox.Show(exitMessage, "Saviour Backup System Exiting...", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
2014-11-10 14:52:04 +00:00
if (result == System.Windows.Forms.DialogResult.Yes) {
icon.notifyIcon.Dispose();
MW.removeDisplay();
Environment.Exit(0);
}
2014-08-02 10:48:14 +01:00
}
}
}