|
Re: Visual C++ 2005 Designer
I am curious to see your project setup as well. You should have a Main.h which houses the Main class declaration, and a Main.cpp for the Main class's code. You should also have a Form3.h and a Form3.cpp. You need to make sure that any code that references the Main class from the Form3 class resides in the Form3.cpp, since you can't have Main.h include Form3.h while at the same time Form3.h includes Main.h since this will cause errors.
I zipped a simple MDI demo application and attached it to the post. I hope it shows what I am talking about.
|