MDI app without MFC?
-
Can I create a MDI form with child forms WITHOUT USING MFC? If it's possible, could you show me some code to do it? Thanks a lot in advance! B
If you really want to do it without any wraper classes (i.e. MFC), get a few books like, "Windows 2000 Programming from the Ground Up" by Herbert Schildt. Herbert likes to hand crank all his stuff and will have examples on how to handle the messaging and window creation. If you just want less complicated CWnd objects you can create a MDI application without the Document/View Architecture. This gives you the CView without the attached CDocument. Unless you want to be able to use different compliers to compile your code, I would use window wraper classes for my development. They do make life easier. Good Luck, Jonathan Craig
-
Can I create a MDI form with child forms WITHOUT USING MFC? If it's possible, could you show me some code to do it? Thanks a lot in advance! B
-
Can I create a MDI form with child forms WITHOUT USING MFC? If it's possible, could you show me some code to do it? Thanks a lot in advance! B
YES, you can. It's called WTL (Windows Template Library). It's on the Platform SDK, and it's great. You can create full-featured apps without MFC bloat and no dependencies.