如和用用VC++6.0正确的分割窗口 80
我用VC++按照以下步骤新建一个SDI程序并将它分割成两个视图:1、用向导创建一个SDI程序sp,前面的几步都是默认,只在最后一步将CSpView的基类设为CEditVi...
我用VC++按照以下步骤新建一个SDI程序并将它分割成两个视图:
1、用向导创建一个SDI程序sp,前面的几步都是默认,只在最后一步将CSpView的基类设为CEditView。
2、在工程中新建一个类CMyTreeView,它的基类为CTreeView。
3、在MainFrm.h中添加变量 CSplitterWnd m_Spl;
4、在MainFrm.cpp的开头添加文件包含:
#include "SpView.h"
#include "MyTreeView.h"
5、用建立类向导重载CMainFrame的OnCreateClient()函数,代码如下:
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
if(m_Spl.CreateStatic(this,1,2)==NULL)
return false;
m_Spl.CreateView(0,0,RUNTIME_CLASS(CSpView),CSize(200,300),pContext);
m_Spl.CreateView(0,1,RUNTIME_CLASS(CMyTreeView),CSize(400,300),pContext);
return true;
}
结果编译时出现如下编译错误:
--------------------Configuration: sp - Win32 Debug--------------------
Compiling...
MainFrm.cpp
c:\documents and settings\administrator\桌面\sp\spview.h(21) : error C2143: syntax error : missing ';' before '*'
c:\documents and settings\administrator\桌面\sp\spview.h(21) : error C2501: 'CSpDoc' : missing storage-class or type specifiers
c:\documents and settings\administrator\桌面\sp\spview.h(21) : error C2501: 'GetDocument' : missing storage-class or type specifiers
c:\documents and settings\administrator\桌面\sp\mytreeview.h(14) : error C2504: 'CTreeView' : base class undefined
哪位高手能解释一下为什么会出现这些错误?
另外怎样才能将一个SDI程序分割成两个以上以不同类为基类的视图?把详细步骤写一下,谢谢
请回答者不要完全复制我的问题中的代码。 展开
1、用向导创建一个SDI程序sp,前面的几步都是默认,只在最后一步将CSpView的基类设为CEditView。
2、在工程中新建一个类CMyTreeView,它的基类为CTreeView。
3、在MainFrm.h中添加变量 CSplitterWnd m_Spl;
4、在MainFrm.cpp的开头添加文件包含:
#include "SpView.h"
#include "MyTreeView.h"
5、用建立类向导重载CMainFrame的OnCreateClient()函数,代码如下:
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
if(m_Spl.CreateStatic(this,1,2)==NULL)
return false;
m_Spl.CreateView(0,0,RUNTIME_CLASS(CSpView),CSize(200,300),pContext);
m_Spl.CreateView(0,1,RUNTIME_CLASS(CMyTreeView),CSize(400,300),pContext);
return true;
}
结果编译时出现如下编译错误:
--------------------Configuration: sp - Win32 Debug--------------------
Compiling...
MainFrm.cpp
c:\documents and settings\administrator\桌面\sp\spview.h(21) : error C2143: syntax error : missing ';' before '*'
c:\documents and settings\administrator\桌面\sp\spview.h(21) : error C2501: 'CSpDoc' : missing storage-class or type specifiers
c:\documents and settings\administrator\桌面\sp\spview.h(21) : error C2501: 'GetDocument' : missing storage-class or type specifiers
c:\documents and settings\administrator\桌面\sp\mytreeview.h(14) : error C2504: 'CTreeView' : base class undefined
哪位高手能解释一下为什么会出现这些错误?
另外怎样才能将一个SDI程序分割成两个以上以不同类为基类的视图?把详细步骤写一下,谢谢
请回答者不要完全复制我的问题中的代码。 展开
1个回答
展开全部
BOOL CMainFrame::OnCreateClient(LPCREATESTRUCT lpcs, CCreateContext* pContext)
{
// TODO: Add your specialized code here and/or call the base class
if(m_Spl.CreateStatic(this,1,2)==NULL)
return false;
m_Spl.CreateView(0,0,RUNTIME_CLASS(CSpView),CSize(200,300),pContext);
m_Spl.CreateView(0,1,RUNTIME_CLASS(CMyTreeView),CSize(400,300),pContext);
return true;
}
{
// TODO: Add your specialized code here and/or call the base class
if(m_Spl.CreateStatic(this,1,2)==NULL)
return false;
m_Spl.CreateView(0,0,RUNTIME_CLASS(CSpView),CSize(200,300),pContext);
m_Spl.CreateView(0,1,RUNTIME_CLASS(CMyTreeView),CSize(400,300),pContext);
return true;
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询