From 0588741c46a1aa03e55b930115eb988a1466a485 Mon Sep 17 00:00:00 2001 From: Jake Howard Date: Tue, 11 Nov 2014 22:50:00 +0000 Subject: [PATCH] added code for displaying splash screen --- Saviour Backup System/splashScreen.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Saviour Backup System/splashScreen.cs b/Saviour Backup System/splashScreen.cs index 5cfca00..dc67b24 100644 --- a/Saviour Backup System/splashScreen.cs +++ b/Saviour Backup System/splashScreen.cs @@ -16,5 +16,11 @@ namespace Saviour_Backup_System { InitializeComponent(); } + + internal void display(bool isStartup) { + this.Show(); + this.desc.Text = "Initialising..."; + if (isStartup) { this.Hide(); } + } } }