Do the MDI child windows run on separate threads?

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I need to have two child windows running on separate threads. When a child is
created, does it get its own thread or do I need to do something special to
dispatch a separate thread?
If something special, can you please point me in the correct direction?
 
ken bus said:
I need to have two child windows running on separate threads. When a
child is created, does it get its own thread or do I need to do
something special to dispatch a separate thread?
If something special, can you please point me in the correct
direction?

I think this is not possible. All related windows must run in the same
thread. You can have multiple threads running. Each thread can call the
corresponding child's Invoke/BeginInvoke method to update the display.

Armin
 
Back
Top