Error in tracking Overwatch while in openFileDialog #25

Merged
Hesham merged 1 commits from Bug-#24 into release/1.4 2018-09-22 11:55:43 +02:00
2 changed files with 20 additions and 9 deletions
Showing only changes of commit 09e1ea0969 - Show all commits

View File

@ -27,26 +27,37 @@ namespace OWTrack
private void checkStatus() private void checkStatus()
{ {
Time.Text = DateTime.Now.ToString("h:mm tt");
try try
{ {
Time.Text = DateTime.Now.ToString("h:mm tt");
status.Text = NOT_RUNNING;
status.ForeColor = Color.Red;
if (tr.owRunning()) if (tr.owRunning())
{ {
status.Text = IS_RUNNING; status.Text = IS_RUNNING;
status.ForeColor = Color.FromArgb(0, 192, 0); status.ForeColor = Color.FromArgb(0, 192, 0);
} }
else
{
status.Text = NOT_RUNNING;
status.ForeColor = Color.Black;
}
} }
catch (Exception e) catch (Exception e)
{ {
MessageBox.Show(e.Message); status.Text = e.Message;
status.ForeColor = Color.Red;
} }
} }
private void loadSave() private void loadSave()
{
try
{ {
Directory.CreateDirectory("saves"); Directory.CreateDirectory("saves");
}
catch (Exception e)
{
MessageBox.Show("Can not create save directory.\n" + e.Message);
}
if (saveManeger.saveExist()) if (saveManeger.saveExist())
{ {
try try
@ -92,7 +103,7 @@ namespace OWTrack
if (result == DialogResult.OK) if (result == DialogResult.OK)
{ {
//tr.gamePath = openFileDialog1.FileName; //tr.gamePath = openFileDialog1.FileName;
MessageBox.Show("Saved Overwatch.exe location.\nPress Clear to rest\n" + openFileDialog1.FileName ); MessageBox.Show("Saved Overwatch.exe location.\nPress Clear to rest");
return openFileDialog1.FileName; return openFileDialog1.FileName;
} }
else else

View File

@ -33,7 +33,7 @@ namespace OWTrack
} }
catch (Exception) catch (Exception)
{ {
Exception ex = new Exception("Error in tracking Overwatch.exe"); Exception ex = new Exception("Error");
throw ex; throw ex;
} }
} }