在网上看到一个以Dialog作控件的方法如下:
I wanted to create a control which would behave as a dialog or formview (you can place controls here). There is a simple way to do it - to take advantage of ActiveX. 1.Create a new MFC ActiveX ControlWizard workspace (no need to special options).
2.Insert a new dialog resource named IDC_MYDIALOG (check following: style - child, border - dialog frame,   visible, control, static edge)
3.Insert a new MFC class named CMyDialog (base class CDialog)
4.Add CMyDialog m_MyDialog member to your CDialogCtrl header source (don't forget to add #include "MyDialog.h")
5.Using classwizard add a member function OnCreate (WM_CREATE)
http://www.codeguru.com/cpp/com-tech/activex/controls/article.php/c2615/Dialog-frame-as-an-ActiveX-control.htm(这是其网址)请问各位大侠,第四步是什么意思?怎么做?希望能具体点。谢谢先