Two ChlidFrames in MDI application?
-
Hi all I want to achieve such an efect like - one view which takes all MDI area and some views which arelike non modal dialogs How can I do it? Two Child frames will be correct? one for "big" view which will be always visible and second for a "smal" views maybe another solution would be better Thank you in advance for help and advice
-
Hi all I want to achieve such an efect like - one view which takes all MDI area and some views which arelike non modal dialogs How can I do it? Two Child frames will be correct? one for "big" view which will be always visible and second for a "smal" views maybe another solution would be better Thank you in advance for help and advice
curious what are you showing in your MDI? you can just use the same instance of CDocument object for both the MDI and the non modal dialogs. just get a pointer to the MDI CDocument object and access within your non modal dialogs classe(s) You can also just get pointers to the specific controls used in your MDI (tree, list, GDI obects) and then just acces these in your modal classes. So the data will all be the same. there are several effective ways to do this, but it's situational