| 网站首页 | 业界新闻 | 小组 | 威客 | 人才 | 下载频道 | 博客 | 代码贴 | 在线编程 | 编程论坛
欢迎加入我们,一同切磋技术
用户名:   
 
密 码:  
共有 656 人关注过本帖
标题:该程序在VS2005中运行时为什么会出现以下错误(红字表示的):
只看楼主 加入收藏
kxfei5555w
Rank: 1
等 级:新手上路
帖 子:23
专家分:5
注 册:2010-9-27
结帖率:100%
收藏
已结贴  问题点数:10 回复次数:2 
该程序在VS2005中运行时为什么会出现以下错误(红字表示的):
BOOL CDlgall::OnInitDialog()
{
    CDialog::OnInitDialog();

    // TODO:  Add extra initialization here

    LV_COLUM lvc
        char*display[7]={"检查号","姓名","日期","性别","年龄","左右利","方式","诊断病历"};
        lvc.mask=LVCF_FMT|LVCF_TEXT|LVCF_SUBITEM|LVCF_WIDTH;
    lvc.fmt=LVCFMT_LEFT;
    lvc.cx=80;
    for(int i=0;i<7;i++)
    {
        lvc.iSubItem=i;
        lvc.pszText=display[i];
        m_List.InsertColumn(i,&lvc);
    }
m_List.SetExtendedStyle(m_List.GetExtendedStyle()|LVS_EX_FULLROWSELECT)    ;
    return TRUE;  // return TRUE unless you set the focus to a control
    // EXCEPTION: OCX Property Pages should return FALSE
}
1>e:\14\14\dlgall.cpp(44) : error C2065: 'LV_COLUM' : undeclared identifier
1>e:\14\14\dlgall.cpp(44) : error C2146: syntax error : missing ';' before identifier 'lvc'
1>e:\14\14\dlgall.cpp(44) : error C2065: 'lvc' : undeclared identifier
1>e:\14\14\dlgall.cpp(44) : error C2144: syntax error : 'char' should be preceded by ';'
1>e:\14\14\dlgall.cpp(44) : error C2078: too many initializers
1>e:\14\14\dlgall.cpp(45) : error C2146: syntax error : missing ';' before identifier ';'
1>e:\14\14\dlgall.cpp(45) : error C2065: ';' : undeclared identifier
1>e:\14\14\dlgall.cpp(45) : error C2146: syntax error : missing ';' before identifier 'lvc'
1>e:\14\14\dlgall.cpp(45) : error C2228: left of '.mask' must have class/struct/union
1>        type is ''unknown-type''
1>e:\14\14\dlgall.cpp(46) : error C2228: left of '.fmt' must have class/struct/union
1>        type is ''unknown-type''
1>e:\14\14\dlgall.cpp(47) : error C2228: left of '.cx' must have class/struct/union
1>        type is ''unknown-type''
1>e:\14\14\dlgall.cpp(50) : error C2228: left of '.iSubItem' must have class/struct/union
1>        type is ''unknown-type''
1>e:\14\14\dlgall.cpp(51) : error C2228: left of '.pszText' must have class/struct/union
1>        type is ''unknown-type''
1>e:\14\14\dlgall.cpp(52) : error C2065: 'm_List' : undeclared identifier
1>e:\14\14\dlgall.cpp(52) : error C2228: left of '.InsertColumn' must have class/struct/union
1>        type is ''unknown-type''
1>e:\14\14\dlgall.cpp(54) : error C2228: left of '.SetExtendedStyle' must have class/struct/union
1>        type is ''unknown-type''
1>e:\14\14\dlgall.cpp(54) : error C2228: left of '.GetExtendedStyle' must have class/struct/union
1>        type is ''unknown-type''
1>Build log was saved at "file://e:\14\14\Debug\BuildLog.htm"
搜索更多相关主题的帖子: 运行 
2010-10-07 11:45
红色警戒
Rank: 11Rank: 11Rank: 11Rank: 11
等 级:贵宾
威 望:19
帖 子:444
专家分:2967
注 册:2005-11-20
收藏
得分:10 
应该是LV_COLUMN

2010-10-07 13:37
kxfei5555w
Rank: 1
等 级:新手上路
帖 子:23
专家分:5
注 册:2010-9-27
收藏
得分:0 
回复 2楼 红色警戒
谢谢!
2010-10-07 15:03
快速回复:该程序在VS2005中运行时为什么会出现以下错误(红字表示的):
数据加载中...
 
   



关于我们 | 广告合作 | 编程中国 | 清除Cookies | TOP | 手机版

编程中国 版权所有,并保留所有权利。
Powered by Discuz, Processed in 0.036881 second(s), 7 queries.
Copyright©2004-2024, BCCN.NET, All Rights Reserved