Changed the startup code to make it work before dev code is finished
This commit is contained in:
parent
822179d1b8
commit
70da3c8584
2 changed files with 3 additions and 2 deletions
|
@ -16,7 +16,8 @@ namespace Saviour_Backup_System
|
||||||
{
|
{
|
||||||
Application.EnableVisualStyles();
|
Application.EnableVisualStyles();
|
||||||
Application.SetCompatibleTextRenderingDefault(false);
|
Application.SetCompatibleTextRenderingDefault(false);
|
||||||
setup.initProgram(args);
|
//setup.initProgram(args);
|
||||||
|
Application.Run(new mainWindow());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -142,6 +142,6 @@ namespace Saviour_Backup_System
|
||||||
deviceTab.Visible = true;
|
deviceTab.Visible = true;
|
||||||
deviceTab.Select();
|
deviceTab.Select();
|
||||||
}
|
}
|
||||||
private void mainWindow_FormClosing(object sender, FormClosingEventArgs e) { setup.closeProgram(sender, e); }
|
private void mainWindow_FormClosing(object sender, FormClosingEventArgs e) { /*setup.closeProgram(sender, e);*/ }
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Reference in a new issue