added splash screen, edited threading import, and changed newline on closing dialog
This commit is contained in:
parent
9ade6218f3
commit
a45039c592
1 changed files with 9 additions and 3 deletions
|
@ -4,7 +4,7 @@ using System.ComponentModel;
|
||||||
using System.Data;
|
using System.Data;
|
||||||
using System.Linq;
|
using System.Linq;
|
||||||
using System.Text;
|
using System.Text;
|
||||||
using System.Threading.Tasks;
|
using System.Threading;
|
||||||
using System.IO;
|
using System.IO;
|
||||||
using System.Windows.Forms;
|
using System.Windows.Forms;
|
||||||
|
|
||||||
|
@ -13,15 +13,21 @@ namespace Saviour_Backup_System
|
||||||
{
|
{
|
||||||
class setup
|
class setup
|
||||||
{
|
{
|
||||||
static string databaseName = databaseTools.databaseName;
|
|
||||||
internal static string[] runtimeArguements = null;
|
internal static string[] runtimeArguements = null;
|
||||||
internal static mainWindow MW;
|
internal static mainWindow MW;
|
||||||
internal static notificationIcon icon;
|
internal static notificationIcon icon;
|
||||||
|
internal static splashScreen SS;
|
||||||
internal static string username = Environment.UserName; //snapshots the username
|
internal static string username = Environment.UserName; //snapshots the username
|
||||||
|
|
||||||
internal static void initProgram(string[] args)
|
internal static void initProgram(string[] args)
|
||||||
{
|
{
|
||||||
runtimeArguements = args;
|
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();
|
icon = new notificationIcon();
|
||||||
MW = new mainWindow();
|
MW = new mainWindow();
|
||||||
//databaseTools.init();
|
//databaseTools.init();
|
||||||
|
@ -33,7 +39,7 @@ namespace Saviour_Backup_System
|
||||||
|
|
||||||
internal static void closeProgram()
|
internal static void closeProgram()
|
||||||
{
|
{
|
||||||
string exitMessage = "Are you sure you want to close Saviour Backup System? \n All copying backups and backup scanning will cease.";
|
string exitMessage = "Are you sure you want to close Saviour Backup System?\nAll copying backups and backup scanning will cease.";
|
||||||
DialogResult result = MessageBox.Show(exitMessage, "Saviour Backup System Exiting...", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
|
DialogResult result = MessageBox.Show(exitMessage, "Saviour Backup System Exiting...", MessageBoxButtons.YesNo, MessageBoxIcon.Warning);
|
||||||
if (result == System.Windows.Forms.DialogResult.Yes) {
|
if (result == System.Windows.Forms.DialogResult.Yes) {
|
||||||
icon.notifyIcon.Dispose();
|
icon.notifyIcon.Dispose();
|
||||||
|
|
Reference in a new issue