Click here to Skip to main content
15,886,258 members
Please Sign up or sign in to vote.
2.00/5 (1 vote)
See more:
I want to create one parent and one child form in vc++, pass the control temporarily to the child form, input some values in it, pass these values to the parent form and then resume the parent execution from where it was left before child activation.
How can I do that all of these in visual c++.
I know the concept of MDI in visual c++ but I don't know how to do the above task...
Posted
Comments
[no name] 31-Mar-13 7:53am    
A simple google search would give you all of this information.
Style-7 31-Mar-13 10:30am    
May be use modal dialog box?

1 solution

Here is the idea: who needs MDI, ever? Why torturing yourself and scaring off your users?
Do yourself a great favor: do not use MDI at all. You can do much easier to implement design without it, with much better quality. MDI is highly discouraged even by Microsoft, in fact, Microsoft dropped it out of WPF and will hardly support it. More importantly, you will scare off all your users if you use MDI. Just don't. Please see:
http://en.wikipedia.org/wiki/Multiple_document_interface#Disadvantages[^],
How to Create MDI Parent Window in WPF?[^].

I can explain what to do instead. Please see my past answers:
How to Create MDI Parent Window in WPF? [Solution 2],
Question on using MDI windows in WPF[^],
MDIContainer giving error[^],
How to set child forms maximized, last childform minimized[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900