How can i create a MDI window wiht VC++ (Non-MFC) juz like watz we did in VB:
1. Start a new NDI project,
2. Start adding MDIChild form
regards,
Printable View
How can i create a MDI window wiht VC++ (Non-MFC) juz like watz we did in VB:
1. Start a new NDI project,
2. Start adding MDIChild form
regards,
You can't. If you don't use MFC, you'll have to code an MDI window. Petzold's book contains an example, I think there also is one in MSDN, but I'm not sure. You'll certainly find one on www.codeguru.com or www.cplusplus.com (or was it .org?).
i was found the reference doc about the posted question. it can be done without MFC :)
www.winprog.org also shows you how to create a simple MDI application.
Don't tell me that. What you originally asked CAN'T be done. You CAN write code so that a MDI app is displayed. But you CAN'T "start a new MDI project" or "start adding MDI child form". The first is only possible with MFC, the second is impossible in VC++ with or w/o MFC.
Win32 projects w/o MFC are always neutral and you can do whatever you want: there is nothing possible in windows that can't be done using pure C++ code with pure API. But it's real coding then, not adding something, but coding.