CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 2 of 2
  1. #1
    Join Date
    Mar 2000
    Location
    Germany, Franken
    Posts
    257

    Strange Behaviour: Application Pseudofreezes

    Hello out there,
    recently I started to observe a strange behaviour in an application of mine:

    The Programm is running without problem but if it is minimized to the taskbar or isn't in foreground anymore after some time the Application seems to freeze. This means that if you left click on the Task bar icon the UI isn't loaded completely as in an non responding program. But when you right click on the Task Bar Icon and then left click the UI is common into foreground immediatly.
    Through debug writes I get the hint that every thread (even the background worker threads I have) in the application seems to stop until the combination of right and left click on the task bar icon is done.
    I've got no idea what could cause such a behaviour. Does anyone here have an hint for me?
    My application is written in c# on Visual Studio 2008 Prof. with .NET-Framework 3.5.

    Thanks

    Akademos

  2. #2
    Join Date
    Jun 2008
    Posts
    2,477

    Re: Strange Behaviour: Application Pseudofreezes

    Are you running code inside something like a paint event that would not fire when the app is minimized?
    If you liked my post go ahead and give me an upvote so that my epee.... ahem, reputation will grow.

    Yes; I have a blog too - http://the-angry-gorilla.com/

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured