Minimize in MDI application
-
In my MDi applcation,I have mininize and maximize buton in both mainframe and childframe. My problem is: When i minimize the childfrmaes,the minimized one goes away or behind the taskbar(not sure).So again i cannot maximize the childframes. How can i do that? BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CMDIChildWnd::PreCreateWindow(cs) ) return FALSE; return TRUE; } BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CMDIFrameWnd::PreCreateWindow(cs) ) return FALSE; return TRUE; } This is my PreCreateWindow coding.
Anu
-
In my MDi applcation,I have mininize and maximize buton in both mainframe and childframe. My problem is: When i minimize the childfrmaes,the minimized one goes away or behind the taskbar(not sure).So again i cannot maximize the childframes. How can i do that? BOOL CChildFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CMDIChildWnd::PreCreateWindow(cs) ) return FALSE; return TRUE; } BOOL CMainFrame::PreCreateWindow(CREATESTRUCT& cs) { if( !CMDIFrameWnd::PreCreateWindow(cs) ) return FALSE; return TRUE; } This is my PreCreateWindow coding.
Anu
Child frame are not displayed in Task Bar, When you minimize the child frame they are minimized to Left down cornor of MainFrame window.
-@SuDhIrKuMaR@-
-
Child frame are not displayed in Task Bar, When you minimize the child frame they are minimized to Left down cornor of MainFrame window.
-@SuDhIrKuMaR@-
-
Ok.SO then how can i maximize again tht childframe.Because i cannot find the minimzed one in anywhere in mainframe..I want to this one.Because i have two or three childframes,so i minimize one window...and maximize the other one. Pls help me out.
Anu
If you create a sample MDI application. ->Open three childs with three time click on new Menu ->Minimize two and maximixe third one ->After maxize you can not see the other two minimized childs ->Go to Winows menu of Application ->you can see the all three names of the child frame in menu with maximize one as checked state ->you can click on the menu to maximize or see other child frames
-@SuDhIrKuMaR@-