Creating additional Window by a thread - C
Posted
by Jamie Keeling
on Stack Overflow
See other posts from Stack Overflow
or by Jamie Keeling
Published on 2010-04-05T22:37:01Z
Indexed on
2010/04/05
22:53 UTC
Read the original article
Hit count: 241
Hello,
I have a windows form that has a simple menu and performs a simple operation, I want to be able to create another windows form with all the functionality of a menu bar, message pump etc.. as a separate thread so I can then share the results of the operation to the second window.
I.E.
1) Form A opens Form B opens as a separate thread
2)Form A performs operation
3)Form A passes results via memory to Form B
4)Form B display results
I'm confused as to how to go about it, the main app runs fine but i'm not sure how to add a second window if the first one already exists.
I hope it makes sense.
Thanks!
© Stack Overflow or respective owner