如和用用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程序分割成两个以上以不同类为基类的视图?把详细步骤写一下,谢谢
请回答者不要完全复制我的问题中的代码。
展开
 我来答
百度网友43f5354
2008-09-12 · TA获得超过1089个赞
知道小有建树答主
回答量:1003
采纳率:25%
帮助的人:551万
展开全部
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;
}
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式