mirror of
https://github.com/islehorse/HISP.git
synced 2025-04-06 13:15:42 +12:00
Add error handling
This commit is contained in:
parent
b906012175
commit
0356930a5c
2 changed files with 14 additions and 8 deletions
|
@ -89,10 +89,14 @@ namespace HISP
|
|||
}
|
||||
|
||||
// Start Web Server
|
||||
cs = new ContentServer();
|
||||
string[] fileList = Directory.GetFiles(Path.Combine(baseDir, "client"), "*", SearchOption.AllDirectories);
|
||||
foreach (string file in fileList)
|
||||
addToList(file);
|
||||
try{
|
||||
cs = new ContentServer();
|
||||
string[] fileList = Directory.GetFiles(Path.Combine(baseDir, "client"), "*", SearchOption.AllDirectories);
|
||||
foreach (string file in fileList)
|
||||
addToList(file);
|
||||
}catch(Exception as e){
|
||||
MessageBox.Show("Web server failed to start: "+e.Message, "Error starting web server", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
|
||||
IncrementProgress();
|
||||
|
||||
|
@ -138,13 +142,15 @@ namespace HISP
|
|||
|
||||
Item.DoSpecialCases();
|
||||
IncrementProgress();
|
||||
|
||||
try{
|
||||
GameServer.StartServer();
|
||||
}catch(Exception as e){
|
||||
MessageBox.Show("Horse Isle server failed to start: "+e.Message, "Error starting web server", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
}
|
||||
IncrementProgress();
|
||||
|
||||
lfrm.DialogResult = DialogResult.OK;
|
||||
startForm.Wait();
|
||||
|
||||
|
||||
SystemTrayIcon stry = new SystemTrayIcon();
|
||||
stry.ShowDialog();
|
||||
|
||||
|
|
2
HorseIsleServer/N00BS/RegisterForm.Designer.cs
generated
2
HorseIsleServer/N00BS/RegisterForm.Designer.cs
generated
|
@ -207,7 +207,7 @@
|
|||
this.MinimizeBox = false;
|
||||
this.MinimumSize = new System.Drawing.Size(365, 280);
|
||||
this.Name = "RegisterForm";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.WindowsDefaultLocation;
|
||||
this.Text = "Create Account";
|
||||
this.Load += new System.EventHandler(this.RegisterForm_Load);
|
||||
this.ResumeLayout(false);
|
||||
|
|
Loading…
Add table
Reference in a new issue