Showing a form from another thread

  • Thread starter Thread starter kurotsuke
  • Start date Start date
K

kurotsuke

Hi,

I need to show a form from a secondary thread and I'm using the Invoke
method to call the delegate on my form.
I would like to display the form and issuing the command from the
secondary thread. My problem is that the Show seems to do nothing. I
put a breakpoint and it isn't even triggered. On the other hand if the
form is visible I can alter its properties via Invoke.

Any ideas on how to solve it? Is it possibile to display a form from a
secondary thread?
Thanks.
 
As far as I can remember correctly forms are meant to be used from the
thread that creates them.
 
Back
Top