SDI to MDI
-
Hi Can anyone answer What are the steps/procedure to convert and SDI application to MDI Thanks
-
Hi Can anyone answer What are the steps/procedure to convert and SDI application to MDI Thanks
Personaly, I would create a new (MDI) project and copy in the relevant parts from the old project. This is because it is not so straight-forward to convert a project from SDI to MDI. You need to: 1. Change your CMainFrame class so that is derives from CMDIFrameWnd and not CFrameWnd. 2. Create a CChildFrame class that derives from CMDIChildWnd. 3. Assuming you're using Document/View architecture, you'll need to modify your CSingleDocTemplate to CMultiDocTemplate. 4. A few more little stuff that I can't really think of right now ... :doh: Hope this helps ...