From 2f46d5d6f90e3169956861af8e00c62fd1568baa Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Wed, 3 Dec 2014 12:28:05 +0000 Subject: [PATCH] removed most of code to make it simpler --- Saviour Backup System/splashScreen.cs | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/Saviour Backup System/splashScreen.cs b/Saviour Backup System/splashScreen.cs index 576b31d..d37c9d2 100644 --- a/Saviour Backup System/splashScreen.cs +++ b/Saviour Backup System/splashScreen.cs @@ -5,7 +5,7 @@ using System.Data; using System.Drawing; using System.Linq; using System.Text; -using System.Threading.Tasks; +using System.Threading; using System.Windows.Forms; namespace Saviour_Backup_System @@ -15,12 +15,11 @@ namespace Saviour_Backup_System public splashScreen() { InitializeComponent(); + display(); } - public void display(bool isStartup) { + private void display() { this.Show(); - this.desc.Text = "Initialising..."; - if (isStartup) { this.Hide(); } } } }