Open network if it does not have a replay yet.

This commit is contained in:
Tim Young 2018-09-28 09:32:32 -05:00
parent 25cc1f720a
commit 7bf1b99e03
1 changed files with 13 additions and 5 deletions

View File

@ -523,11 +523,19 @@ namespace EduNetworkBuilder
BuilderWindow myWin = (BuilderWindow)Application.OpenForms["BuilderWindow"];
if (myWin != null)
{
//myWin.Activate();
myWin.replayNetwork(TheName, 1);
//Return back to the listbox window
Visible = true;
Activate();
if (oursettings.HasReplay(TheName))
{
//myWin.Activate();
myWin.replayNetwork(TheName, 1);
//Return back to the listbox window
Visible = true;
Activate();
}
else
{
if (lbWindowData.SelectedItem != null)
NB.LoadNetworkFromResource(TheName);
}
}
}
}