Under Windows 8, when your application is closed by the user, they might get a "Stopped working" message as below:
This can be caused by the Security SessionLock if you have started it.
To fix it, add code to stop the Session Monitoring right after the RunApplication line in your AppMain.vb / Program.cs:
'-- Run the application
StrataFrameApplication.RunApplication()
'-- stop SessionLock Monitoring to avoid error on exit on Windows 8
SessionLock.StopSessionMonitoring()
This should stop Windows 8 complaining.