You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Aug 18, 2020. It is now read-only.
if(!(string.IsNullOrEmpty(result.Item2?.First)||string.IsNullOrEmpty(result.Item2?.Last)))// Checking if the civilian is empty bc for some reason == and .Equals are not working for this situation
58
58
{
59
-
newCivView(result.Item2).Show();
60
-
});
59
+
Invoke((MethodInvoker)delegate
60
+
{
61
+
newCivView(result.Item2).Show();
62
+
});
63
+
}
64
+
else
65
+
MessageBox.Show("That name doesn't exist in the system!","DispatchSystem",MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
61
66
}
62
67
else
63
-
MessageBox.Show("That name doesn't exist in the system!","DispatchSystem",MessageBoxButtons.OK,MessageBoxIcon.Exclamation);
0 commit comments