netcf application hang during deactivation?

  • Thread starter Thread starter Craig Setera
  • Start date Start date
C

Craig Setera

(apologies for cross post from Smartphone newsgroup)

My .Net CF 1.0 application appears to hang when deactivated and an
attempt is made to bring it to the front. Any ideas what I might be
doing wrong? Is there a good example somewhere on how the "lifecycle"
of a .Net CF application works as well as best practices for handling
backgrounding and returning to the foreground?

Thanks,
Craig
 
Do you have anything in your Form's event handlers that might affect this
(like for Activate)?


--

Chris Tacke, Embedded MVP
OpenNETCF Consulting
Managed Code in an Embedded World
www.OpenNETCF.com
 
At this point, I don't have any activate or deactivate handlers on my
primary form.
 
Do you have threads that might try to update the Controls? If yes you might
use me.invoke before...
 
Back
Top