-
Hello!
It's me again! ;) Who else could be than me... :)
And I have another question.
As I told you in previous post I'm developing a MFC app.
The problem I have now is that I don't know how to show dialog I created in my resources. I've tried a few shots, but I allways got an error. I wrote CCDAboutDlg::DoModal(); and I got an error. Compiler "told" me that CCDAboutDlg is NOT class. How can't it be?
-
You have to create an instance of your class:
Code:
CCDAboutDlg aboutDlg;
aboutDlg.DoModal();
IM me if any other problems.