diff --git a/Saviour Backup System/setup.cs b/Saviour Backup System/setup.cs index 1afcb33..80d710c 100644 --- a/Saviour Backup System/setup.cs +++ b/Saviour Backup System/setup.cs @@ -18,6 +18,8 @@ namespace Saviour_Backup_System public static notificationIcon icon; public static splashScreen SS; public static addBackupWizard ABW; + public static transferWindow TW; + public static List transfersArray; public static string username = Environment.UserName; //snapshots the username public static void initProgram(string[] args) @@ -26,7 +28,10 @@ namespace Saviour_Backup_System 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! + + //add in other code here, just for placeholder! + startupBackups(); + SS.Close(); SS.Dispose(); icon = new notificationIcon(); @@ -36,7 +41,9 @@ namespace Saviour_Backup_System Application.Run(MW); } - + public static void startupBackups(){ + return; + } public static void closeProgram() { string exitMessage = "Are you sure you want to close Saviour Backup System?\nAll copying backups and backup scanning will cease.";