Hi!
I wannt to use MFC to make a C++ application but my application's main window needs to have all sorts of controls, like treeviews, buttons, etc. Standard MFC notepad-like window wonnt do.
Can this be done at all
If answer is positive, can it be done using visual resource editor, like when programming in C# If not, what is the point in using MFC to make win32 applications
(I am using VS .NET)
Thanx!

designing MFC program?
tony42472
Use the project to create an SDI application, and select CFormView as your view's base class. Now you can use the resource editor to do what you'd normally do with a dialog (just like in C#/VB/J#)