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()
{
Time.Text = DateTime.Now.ToString("h:mm tt");
try
{
Time.Text = DateTime.Now.ToString("h:mm tt");
status.Text = NOT_RUNNING;
status.ForeColor = Color.Red;
if (tr.owRunning())
{
status.Text = IS_RUNNING;
status.ForeColor = Color.FromArgb(0, 192, 0);
}
else
{
status.Text = NOT_RUNNING;
status.ForeColor = Color.Black;
}
}
catch (Exception e)
{
MessageBox.Show(e.Message);
status.Text = e.Message;
status.ForeColor = Color.Red;
}
}
private void loadSave()
{
try
{
Directory.CreateDirectory("saves");
}
catch (Exception e)
{
MessageBox.Show("Can not create save directory.\n" + e.Message);
}
if (saveManeger.saveExist())
{
try
@ -92,7 +103,7 @@ namespace OWTrack
if (result == DialogResult.OK)
{
//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;
}
else

View File

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