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

    // TODO:  Add extra initialization here

    LV_COLUMN 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(53) : error C2039: 'InsertColumn' : is not a member of 'CListBox'
1>        c:\program files\microsoft visual studio 8\vc\atlmfc\include\afxwin.h(3033) : see declaration of 'CListBox'
1>e:\14\14\dlgall.cpp(55) : error C2039: 'SetExtendedStyle' : is not a member of 'CListBox'
1>        c:\program files\microsoft visual studio 8\vc\atlmfc\include\afxwin.h(3033) : see declaration of 'CListBox'
1>e:\14\14\dlgall.cpp(55) : error C2039: 'GetExtendedStyle' : is not a member of 'CListBox'
1>        c:\program files\microsoft visual studio 8\vc\atlmfc\include\afxwin.h(3033) : see declaration of 'CListBox'
1>Build log was saved at "file://e:\14\14\Debug\BuildLog.htm"
搜索更多相关主题的帖子: 运行 
2010-10-07 15:25
cnfarer
Rank: 16Rank: 16Rank: 16Rank: 16
等 级:版主
威 望:179
帖 子:3330
专家分:21157
注 册:2010-1-19
收藏
得分:10 
在VS2005中输入m_list.看看提示有哪些...

★★★★★为人民服务★★★★★
2010-10-08 10:30
kxfei5555w
Rank: 1
等 级:新手上路
帖 子:23
专家分:5
注 册:2010-9-27
收藏
得分:0 
回复 2楼 cnfarer
哦,这个关键是我选错控件了。谢谢!
2010-10-09 10:21
快速回复:为什么该程序在VS2005运行时出现以下错误(错误在最后红字)?
数据加载中...
 
   



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

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