If the window gets minimized is there any thread problem?

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • priya pawar
    New Member
    • Jan 2012
    • 1

    If the window gets minimized is there any thread problem?

    hi,

    i have created an application which opens the web page after clicking on button but after opening the web page it will automatically get minimized..i have also used thread abort condition in this application.so is there any thread problem??

    Thank u.
  • Fr33dan
    New Member
    • Oct 2008
    • 57

    #2
    I'm mildly confused as you what specifically you're asking but either way I think the answer is no.

    Running threads are separate entities from form will not be interrupted by the minimizing the application window. Threads can even be run in the background without any window open.

    If there is some code that is supposed to call the Thread.Abort method after the web page is opened as part of the Button.OnClick event then it will still be run after the window is minimized. (assuming your method of loading a webpage does not block).

    Comment

    Working...