J
Joshua Ellul
Hi There,
I want to create a window in a thread of its own how can I do this?
Regards,
Joshua
I want to create a window in a thread of its own how can I do this?
Regards,
Joshua
* "AlexS said:You can do that in exactly same way as you do on main UI thread.
Basically this means you have to create Form and use Application.Run on it.
This will start separate message pump for your thread.
At the same time you must keep in mind that communication and
synchronization between UI threads is not so simple as when you have only
one UI thread. See Invoke/BeginInvoke methods for resp. controls and
threading topics in MSDN for .Net.