error C2065: 'IDB_BITMAP' : undeclared identifier

cbzjzsb123 2011-08-02 07:50:19
我用MFC做一个通讯录,照着书上做的,怎么老是出现这个错误啊?
代码如下:
// AddressListDlg.cpp : implementation file
//

#include "stdafx.h"
#include "AddressList.h"
#include "AddressListDlg.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CAboutDlg dialog used for App About

class CAboutDlg : public CDialog
{
public:
CAboutDlg();

// Dialog Data
//{{AFX_DATA(CAboutDlg)
enum { IDD = IDD_ABOUTBOX };
//}}AFX_DATA

// ClassWizard generated virtual function overrides
//{{AFX_VIRTUAL(CAboutDlg)
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
//}}AFX_VIRTUAL

// Implementation
protected:
//{{AFX_MSG(CAboutDlg)
//}}AFX_MSG
DECLARE_MESSAGE_MAP()
};

CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
//{{AFX_DATA_INIT(CAboutDlg)
//}}AFX_DATA_INIT
}

void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAboutDlg)
//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
//{{AFX_MSG_MAP(CAboutDlg)
// No message handlers
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAddressListDlg dialog

CAddressListDlg::CAddressListDlg(CWnd* pParent /*=NULL*/)
: CDialog(CAddressListDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CAddressListDlg)
// NOTE: the ClassWizard will add member initialization here
//}}AFX_DATA_INIT
// Note that LoadIcon does not require a subsequent DestroyIcon in Win32
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}

void CAddressListDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CAddressListDlg)
DDX_Control(pDX, IDC_LIST1, m_list);
DDX_Control(pDX, IDC_TREE1, m_tree);
//}}AFX_DATA_MAP
}

BEGIN_MESSAGE_MAP(CAddressListDlg, CDialog)
//{{AFX_MSG_MAP(CAddressListDlg)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CAddressListDlg message handlers

BOOL CAddressListDlg::OnInitDialog()
{
CDialog::OnInitDialog();

// Add "About..." menu item to system menu.

// IDM_ABOUTBOX must be in the system command range.
ASSERT((IDM_ABOUTBOX & 0xFFF0) == IDM_ABOUTBOX);
ASSERT(IDM_ABOUTBOX < 0xF000);

CMenu* pSysMenu = GetSystemMenu(FALSE);
if (pSysMenu != NULL)
{
CString strAboutMenu;
strAboutMenu.LoadString(IDS_ABOUTBOX);
if (!strAboutMenu.IsEmpty())
{
pSysMenu->AppendMenu(MF_SEPARATOR);
pSysMenu->AppendMenu(MF_STRING, IDM_ABOUTBOX, strAboutMenu);
}
}

// Set the icon for this dialog. The framework does this automatically
// when the application's main window is not a dialog
SetIcon(m_hIcon, TRUE); // Set big icon
SetIcon(m_hIcon, FALSE); // Set small icon

// TODO: Add extra initialization here
m_treeImageList.Create(IDB_BITMAP,16,1,RGB(0,255,0)); //---创建图像列表
m_tree.SetImageList(&m_treeImageList,TVSIL_NORMAL); //---树形视图控件载入位图
CString treeHeader[3]={"同学","朋友","同事"};
HTREEITEM treeItem[3]; //---树形视图控件的根项
for(int i=0;i<3;i++)
{
treeItem[i]=m_tree.InsertItem(treeHeader[i],0,0,TVI_ROOT); //---插入父项
m_tree.SetItemData(treeItem[i],(DWORD)(i+10)); //---给父项设值
}
HTREEITEM treeChild=m_tree.InsertItem("李震",2,2,treeItem[0]); //---父项1插入子项
m_tree.SetItemData(treeChild,(DWORD)0); //---为父项1的子项赋0,子项0
activeItem=treeChild; //---把活动选项设为子项0
treeChild=m_tree.InsertItem("王刚",3,3,treeItem[1]); //---父项2插入子项
m_tree.SetItemData(treeChild,(DWORD)1); //---子项1赋值
treeChild=m_tree.InsertItem("孙明",3,3,treeItem[2]); //---父项3插入子项
m_tree.SetItemData(treeChild,(DWORD)2); //---子项2赋值
m_list.InsertColumn(0, "类别",LVCFMT_LEFT,65); //---列表视图控件的标题行
m_list.InsertColumn(1, "信息",LVCFMT_LEFT,110); //---列表视图控件的标题行
m_tree.Select(activeItem,TVGN_CARET); //---设置子项0为选定项
return TRUE; // return TRUE unless you set the focus to a control
}

void CAddressListDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else
{
CDialog::OnSysCommand(nID, lParam);
}
}

// If you add a minimize button to your dialog, you will need the code below
// to draw the icon. For MFC applications using the document/view model,
// this is automatically done for you by the framework.

void CAddressListDlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // device context for painting

SendMessage(WM_ICONERASEBKGND, (WPARAM) dc.GetSafeHdc(), 0);

// Center icon in client rectangle
int cxIcon = GetSystemMetrics(SM_CXICON);
int cyIcon = GetSystemMetrics(SM_CYICON);
CRect rect;
GetClientRect(&rect);
int x = (rect.Width() - cxIcon + 1) / 2;
int y = (rect.Height() - cyIcon + 1) / 2;

// Draw the icon
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialog::OnPaint();
}
}

// The system calls this to obtain the cursor to display while the user drags
// the minimized window.
HCURSOR CAddressListDlg::OnQueryDragIcon()
{
return (HCURSOR) m_hIcon;
}


运行结果:
--------------------Configuration: AddressList - Win32 Debug--------------------
Compiling...
AddressListDlg.cpp
D:\Program Files\Microsoft Visual Studio\MyProjects\AddressList\AddressListDlg.cpp(120) : error C2065: 'IDB_BITMAP' : undeclared identifier
Error executing cl.exe.

AddressList.exe - 1 error(s), 0 warning(s)
...全文
562 6 打赏 收藏 转发到动态 举报
写回复
用AI写文章
6 条回复
切换为时间正序
请发表友善的回复…
发表回复
ouwarmth 2011-08-03
  • 打赏
  • 举报
回复
资源的问题。。。
5t4rk 2011-08-02
  • 打赏
  • 举报
回复
C2065: 'IDB_BITMAP' : undeclared identifier
这个你改一下试试
IDB_BITMAP1
cbzjzsb123 2011-08-02
  • 打赏
  • 举报
回复
include 一下 resource.h
运行结果还是一样啊?
怎么添加那个资源啊?
东莞某某某 2011-08-02
  • 打赏
  • 举报
回复
include 一下 resource.h
szqh97 2011-08-02
  • 打赏
  • 举报
回复
估计是你没有添加IDB_BITMAP资源吧,
pengyouya123 2011-08-02
  • 打赏
  • 举报
回复
有这个IDB_BITMAP资源么?

64,646

社区成员

发帖
与我相关
我的任务
社区描述
C++ 语言相关问题讨论,技术干货分享,前沿动态等
c++ 技术论坛(原bbs)
社区管理员
  • C++ 语言社区
  • encoderlee
  • paschen
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
  1. 请不要发布与C++技术无关的贴子
  2. 请不要发布与技术无关的招聘、广告的帖子
  3. 请尽可能的描述清楚你的问题,如果涉及到代码请尽可能的格式化一下

试试用AI创作助手写篇文章吧