When exiting my .NET CF 3.5 application on the Motorola MC3100 (CE 6.0 version only) I get the error message \"Application xxx has encountered a serious error and needs to shut
I faced exactly the same problem. Tried the following (none solved the issue):
new Font()
statementsForm.Close()
instead of Application.Exit()
The only solution that finally worked for our case, (however it is not a "pretty" solution), has been the following command in the MainForm.Closed()
Process.GetCurrentProcess().Kill()