I'm running Windows CE 5.0 on an ARM processor device using .NET CF 3.5 with an application written in C#. (Scanner device)
I'm experiencing a problem where my application screen still persists even after i am killing the entire application using Process.GetCurrentProcess().Kill()
PS: I am killing the application after timeout(say after 2 min if the device scree is idle). I have debugged the application with a break point on the line Process.GetCurrentProcess().Kill()
. It is killing the application and i am losing the connection in visual studion but, screen still persists on the device
Is there any of methods I can try and use or causes that would be making this happen?
Thanks.