06-17-2010 09:23 AM
When my application is terminating it calls the following code from my Form Closing callback:
if (this.axApplicationMgr.Shutdown() == false)
{
e.Cancel = true;
}
else
{
...
}
But before the ExitApplication event occurs, a StartExecution event and an EndExecution event occur. Where are these extraneous events coming from and how can I get rid of them?
Solved! Go to Solution.
06-17-2010 09:58 AM - edited 06-17-2010 10:00 AM
It's probably of the LoginLogout sequence in FrontEndCallbacks.seq performing a logout.
Since the event has a reference to the execution, grab it and call Execution.GetSequenceFile() to see.
06-17-2010 10:13 AM
Yes both events are indeed from LoginLogout in FrontEndCallbacks.
Ok, so these events are part of the normal function of shutting down and they are not anything I should be concerned about, right?
06-17-2010 02:35 PM