
Adding Another MFC Dialog to the Dialog base application
Hi,
I just ran into a small problem while adding a new dialog to my MFC
program.
Namely I am not sure how to connect the new dialog with the main
dialog class, so that I can call my new dialog functions from there.
In Visual C++ 6.0 all I had to do was to go to the class wizard after
adding a new resource(dialog in this case) and the class wizard would
add new class for the dialog and I could later create an instance of
the new dialog class to become part of the main dialog. Yet, I can't
quite figure out how to do it in .NET C++. At this point my new
dialog is created, but I have no way of displaying it and getting the
user feedback from it :(