主题:简单控件程序的调试错误
// ButtonListDlg.cpp : 实现文件
//
#include "stdafx.h"
#include "ButtonList.h"
#include "ButtonListDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// 用于应用程序“关于”菜单项的 CAboutDlg 对话框
class CAboutDlg : public CDialog
{
public:
CAboutDlg();
// 对话框数据
enum { IDD = IDD_ABOUTBOX };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
END_MESSAGE_MAP()
// CButtonListDlg 对话框
CButtonListDlg::CButtonListDlg(CWnd* pParent /*=NULL*/)
: CDialog(CButtonListDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CButtonListDlg)
m_student = 0; //初始状态学生为张三
m_lesson1 = TRUE; //设置数学为必选
m_lesson2 = FALSE;
m_lesson3 = FALSE;
//}}AFX_DATA_INIT
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CButtonListDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CButtonListDlg)
DDX_Control(pDX, IDC_ADD, m_Addbutton);
DDX_Control(pDX, IDC_LIST1, m_list);
DDX_Radio(pDX, IDC_RADIO1, m_student);
DDX_Check(pDX, IDC_CHECK1, m_lesson1);
DDX_Check(pDX, IDC_CHECK2, m_lesson2);
DDX_Check(pDX, IDC_CHECK3, m_lesson3);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CButtonListDlg, CDialog)
//{{AFX_MSG_MAP(CButtonListDlg)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_BN_CLICKED(IDC_ADD, OnAdd)
ON_LBN_DBLCLK(IDC_LIST1,OnLbnDblclkList1)
ON_BN_CLICKED(IDC_RADIO1, OnRadio1)
ON_BN_CLICKED(IDC_RADIO2,OnRadio2)
ON_BN_CLICKED(IDC_RADIO3, OnRadio3)
ON_BN_CLICKED(IDC_CHECK1, OnCheck1)
ON_BN_CLICKED(IDC_CHECK2, OnCheck2)
ON_BN_CLICKED(IDC_CHECK3, OnCheck3)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
// CButtonListDlg 消息处理程序
BOOL CButtonListDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// 将“关于...”菜单项添加到系统菜单中。
// IDM_ABOUTBOX 必须在系统命令范围内。
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);
}
}
// 设置此对话框的图标。当应用程序主窗口不是对话框时,框架将自动
// 执行此操作
SetIcon(m_hIcon, TRUE); // 设置大图标
SetIcon(m_hIcon, FALSE); // 设置小图标
// TODO: 在此添加额外的初始化代码
GetDlgItem(IDC_CHECK1)->EnableWindow(false);//数学多选项无效
m_Addbutton.LoadBitmaps(IDB_ADD1,IDB_ADD2);
return TRUE; // 除非将焦点设置到控件,否则返回 TRUE
}
void CButtonListDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else
{
CDialog::OnSysCommand(nID, lParam);
}
}
// 如果向对话框添加最小化按钮,则需要下面的代码
// 来绘制该图标。对于使用文档/视图模型的 MFC 应用程序,
// 这将由框架自动完成。
void CButtonListDlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // 用于绘制的设备上下文
SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
// 使图标在工作矩形中居中
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;
// 绘制图标
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialog::OnPaint();
}
}
//当用户拖动最小化窗口时系统调用此函数取得光标显示。
//
HCURSOR CButtonListDlg::OnQueryDragIcon()
{
return static_cast<HCURSOR>(m_hIcon);
}
void CButtonListDlg::OnLbnDblclkList1()
{
// TODO: 在此添加控件通知处理程序代码
CString str;//定义字符串
int term;//定义项
term=m_list.GetCurSel();//选择的项的序号
m_list.GetText(term,str);//该项的文本内容
AfxMessageBox(str);//弹出窗口显示
}
void CButtonListDlg::OnAdd()
{
// TODO: 在此添加控件通知处理程序代码
UpdateData(true);
CString str;//列表框字符串
switch(m_student)
{
case 0:
str="张三:";
if(m_lesson1)
str+="数学 ";
if(m_lesson2)
str+="哲学 ";
if(m_lesson3)
str+="医学 ";
break;
case 1:
str="李四:";
if(m_lesson1)
str+="数学 ";
if(m_lesson2)
str+="哲学 ";
if(m_lesson3)
str+="医学 ";
break;
case 2:
str="王五:";
if(m_lesson1)
str+="数学 ";
if(m_lesson2)
str+="哲学 ";
if(m_lesson3)
str+="医学 ";
break;
}
m_list.AddString(str);
}
void CButtonListDlg::OnRadio1()
{
// TODO: 在此添加控件通知处理程序代码
m_student = 0; //初始状态学生为张三
m_lesson1 = TRUE; //设置数学为必选
m_lesson2 = FALSE;
m_lesson3 = FALSE;
UpdateData(false);
GetDlgItem(IDC_CHECK1)->EnableWindow(false);//数学多选项无效
GetDlgItem(IDC_CHECK2)->EnableWindow(true);//哲学多选项有效
GetDlgItem(IDC_CHECK3)->EnableWindow(true);//医学多选项有效
}
void CButtonListDlg::OnRadio2()
{
// TODO: 在此添加控件通知处理程序代码
m_student = 1; //初始状态学生为李四
m_lesson1 = FALSE;
m_lesson3 = FALSE;
m_lesson2 = TRUE; //设置哲学为必选
UpdateData(false);
GetDlgItem(IDC_CHECK2)->EnableWindow(false);//哲学多选项无效
GetDlgItem(IDC_CHECK1)->EnableWindow(true);//数学多选项有效
GetDlgItem(IDC_CHECK3)->EnableWindow(true);//医学多
}
void CButtonListDlg::OnRadio3()
{
// TODO: 在此添加控件通知处理程序代码
m_student = 2; //初始状态学生为王五
m_lesson3 = TRUE; //设置医学为必选
m_lesson1 = FALSE;
m_lesson2 = FALSE;
UpdateData(false);
GetDlgItem(IDC_CHECK3)->EnableWindow(false);//医学多选项无效
GetDlgItem(IDC_CHECK1)->EnableWindow(true);//数学多选项有效
GetDlgItem(IDC_CHECK2)->EnableWindow(true);//哲学多选项有效
}
void CButtonListDlg::OnCheck1()
{
// TODO: 在此添加控件通知处理程序代码
}
void CButtonListDlg::OnCheck2()
{
// TODO: 在此添加控件通知处理程序代码
}
void CButtonListDlg::OnCheck3()
{
// TODO: 在此添加控件通知处理程序代码
}
// ButtonListDlg.h : 头文件
//
#pragma once
#include "afxwin.h"
// CButtonListDlg 对话框
class CButtonListDlg : public CDialog
{
// 构造
public:
CButtonListDlg(CWnd* pParent = NULL); // 标准构造函数
// 对话框数据
enum { IDD = IDD_BUTTONLIST_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
int m_student;
public:
BOOL m_lesson1;
public:
BOOL m_lesson2;
public:
BOOL m_lesson3;
public:
CBitmapButton m_Addbutton;
public:
afx_msg void OnAdd();
public:
afx_msg void OnLbnDblclkList1();
public:
afx_msg void OnRadio1();
public:
afx_msg void OnRadio2();
public:
afx_msg void OnRadio3();
public:
CListBox m_list;
public:
afx_msg void OnCheck1();
public:
afx_msg void OnCheck2();
public:
afx_msg void OnCheck3();
};
ButtonListDlg.h和 ButtonListDlg.cpp已列出,我是按书<<精通mfc程序设计>>人民邮电出版社中敲进出的,设置也按书上来,为什
么会出现如下错误:
错误 1 error LNK2001: 无法解析的外部符号 "public: void __thiscall CButtonListApp::OnLbnDblclkList1(void)"
(?OnLbnDblclkList1@CButtonListApp@@QAEXXZ) ButtonList.obj
错误 2 fatal error LNK1120: 1 个无法解析的外部命令 D:\Backup\我的文档\Visual Studio 2005\
开始学就遇阻,很郁闷,希望高手指点!
本程序涉及到button,group box,radio button,check box,list box,static text控件
//
#include "stdafx.h"
#include "ButtonList.h"
#include "ButtonListDlg.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// 用于应用程序“关于”菜单项的 CAboutDlg 对话框
class CAboutDlg : public CDialog
{
public:
CAboutDlg();
// 对话框数据
enum { IDD = IDD_ABOUTBOX };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
DECLARE_MESSAGE_MAP()
};
CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
{
}
void CAboutDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
}
BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
END_MESSAGE_MAP()
// CButtonListDlg 对话框
CButtonListDlg::CButtonListDlg(CWnd* pParent /*=NULL*/)
: CDialog(CButtonListDlg::IDD, pParent)
{
//{{AFX_DATA_INIT(CButtonListDlg)
m_student = 0; //初始状态学生为张三
m_lesson1 = TRUE; //设置数学为必选
m_lesson2 = FALSE;
m_lesson3 = FALSE;
//}}AFX_DATA_INIT
m_hIcon = AfxGetApp()->LoadIcon(IDR_MAINFRAME);
}
void CButtonListDlg::DoDataExchange(CDataExchange* pDX)
{
CDialog::DoDataExchange(pDX);
//{{AFX_DATA_MAP(CButtonListDlg)
DDX_Control(pDX, IDC_ADD, m_Addbutton);
DDX_Control(pDX, IDC_LIST1, m_list);
DDX_Radio(pDX, IDC_RADIO1, m_student);
DDX_Check(pDX, IDC_CHECK1, m_lesson1);
DDX_Check(pDX, IDC_CHECK2, m_lesson2);
DDX_Check(pDX, IDC_CHECK3, m_lesson3);
//}}AFX_DATA_MAP
}
BEGIN_MESSAGE_MAP(CButtonListDlg, CDialog)
//{{AFX_MSG_MAP(CButtonListDlg)
ON_WM_SYSCOMMAND()
ON_WM_PAINT()
ON_WM_QUERYDRAGICON()
ON_BN_CLICKED(IDC_ADD, OnAdd)
ON_LBN_DBLCLK(IDC_LIST1,OnLbnDblclkList1)
ON_BN_CLICKED(IDC_RADIO1, OnRadio1)
ON_BN_CLICKED(IDC_RADIO2,OnRadio2)
ON_BN_CLICKED(IDC_RADIO3, OnRadio3)
ON_BN_CLICKED(IDC_CHECK1, OnCheck1)
ON_BN_CLICKED(IDC_CHECK2, OnCheck2)
ON_BN_CLICKED(IDC_CHECK3, OnCheck3)
//}}AFX_MSG_MAP
END_MESSAGE_MAP()
// CButtonListDlg 消息处理程序
BOOL CButtonListDlg::OnInitDialog()
{
CDialog::OnInitDialog();
// 将“关于...”菜单项添加到系统菜单中。
// IDM_ABOUTBOX 必须在系统命令范围内。
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);
}
}
// 设置此对话框的图标。当应用程序主窗口不是对话框时,框架将自动
// 执行此操作
SetIcon(m_hIcon, TRUE); // 设置大图标
SetIcon(m_hIcon, FALSE); // 设置小图标
// TODO: 在此添加额外的初始化代码
GetDlgItem(IDC_CHECK1)->EnableWindow(false);//数学多选项无效
m_Addbutton.LoadBitmaps(IDB_ADD1,IDB_ADD2);
return TRUE; // 除非将焦点设置到控件,否则返回 TRUE
}
void CButtonListDlg::OnSysCommand(UINT nID, LPARAM lParam)
{
if ((nID & 0xFFF0) == IDM_ABOUTBOX)
{
CAboutDlg dlgAbout;
dlgAbout.DoModal();
}
else
{
CDialog::OnSysCommand(nID, lParam);
}
}
// 如果向对话框添加最小化按钮,则需要下面的代码
// 来绘制该图标。对于使用文档/视图模型的 MFC 应用程序,
// 这将由框架自动完成。
void CButtonListDlg::OnPaint()
{
if (IsIconic())
{
CPaintDC dc(this); // 用于绘制的设备上下文
SendMessage(WM_ICONERASEBKGND, reinterpret_cast<WPARAM>(dc.GetSafeHdc()), 0);
// 使图标在工作矩形中居中
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;
// 绘制图标
dc.DrawIcon(x, y, m_hIcon);
}
else
{
CDialog::OnPaint();
}
}
//当用户拖动最小化窗口时系统调用此函数取得光标显示。
//
HCURSOR CButtonListDlg::OnQueryDragIcon()
{
return static_cast<HCURSOR>(m_hIcon);
}
void CButtonListDlg::OnLbnDblclkList1()
{
// TODO: 在此添加控件通知处理程序代码
CString str;//定义字符串
int term;//定义项
term=m_list.GetCurSel();//选择的项的序号
m_list.GetText(term,str);//该项的文本内容
AfxMessageBox(str);//弹出窗口显示
}
void CButtonListDlg::OnAdd()
{
// TODO: 在此添加控件通知处理程序代码
UpdateData(true);
CString str;//列表框字符串
switch(m_student)
{
case 0:
str="张三:";
if(m_lesson1)
str+="数学 ";
if(m_lesson2)
str+="哲学 ";
if(m_lesson3)
str+="医学 ";
break;
case 1:
str="李四:";
if(m_lesson1)
str+="数学 ";
if(m_lesson2)
str+="哲学 ";
if(m_lesson3)
str+="医学 ";
break;
case 2:
str="王五:";
if(m_lesson1)
str+="数学 ";
if(m_lesson2)
str+="哲学 ";
if(m_lesson3)
str+="医学 ";
break;
}
m_list.AddString(str);
}
void CButtonListDlg::OnRadio1()
{
// TODO: 在此添加控件通知处理程序代码
m_student = 0; //初始状态学生为张三
m_lesson1 = TRUE; //设置数学为必选
m_lesson2 = FALSE;
m_lesson3 = FALSE;
UpdateData(false);
GetDlgItem(IDC_CHECK1)->EnableWindow(false);//数学多选项无效
GetDlgItem(IDC_CHECK2)->EnableWindow(true);//哲学多选项有效
GetDlgItem(IDC_CHECK3)->EnableWindow(true);//医学多选项有效
}
void CButtonListDlg::OnRadio2()
{
// TODO: 在此添加控件通知处理程序代码
m_student = 1; //初始状态学生为李四
m_lesson1 = FALSE;
m_lesson3 = FALSE;
m_lesson2 = TRUE; //设置哲学为必选
UpdateData(false);
GetDlgItem(IDC_CHECK2)->EnableWindow(false);//哲学多选项无效
GetDlgItem(IDC_CHECK1)->EnableWindow(true);//数学多选项有效
GetDlgItem(IDC_CHECK3)->EnableWindow(true);//医学多
}
void CButtonListDlg::OnRadio3()
{
// TODO: 在此添加控件通知处理程序代码
m_student = 2; //初始状态学生为王五
m_lesson3 = TRUE; //设置医学为必选
m_lesson1 = FALSE;
m_lesson2 = FALSE;
UpdateData(false);
GetDlgItem(IDC_CHECK3)->EnableWindow(false);//医学多选项无效
GetDlgItem(IDC_CHECK1)->EnableWindow(true);//数学多选项有效
GetDlgItem(IDC_CHECK2)->EnableWindow(true);//哲学多选项有效
}
void CButtonListDlg::OnCheck1()
{
// TODO: 在此添加控件通知处理程序代码
}
void CButtonListDlg::OnCheck2()
{
// TODO: 在此添加控件通知处理程序代码
}
void CButtonListDlg::OnCheck3()
{
// TODO: 在此添加控件通知处理程序代码
}
// ButtonListDlg.h : 头文件
//
#pragma once
#include "afxwin.h"
// CButtonListDlg 对话框
class CButtonListDlg : public CDialog
{
// 构造
public:
CButtonListDlg(CWnd* pParent = NULL); // 标准构造函数
// 对话框数据
enum { IDD = IDD_BUTTONLIST_DIALOG };
protected:
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV 支持
// 实现
protected:
HICON m_hIcon;
// 生成的消息映射函数
virtual BOOL OnInitDialog();
afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
afx_msg void OnPaint();
afx_msg HCURSOR OnQueryDragIcon();
DECLARE_MESSAGE_MAP()
public:
int m_student;
public:
BOOL m_lesson1;
public:
BOOL m_lesson2;
public:
BOOL m_lesson3;
public:
CBitmapButton m_Addbutton;
public:
afx_msg void OnAdd();
public:
afx_msg void OnLbnDblclkList1();
public:
afx_msg void OnRadio1();
public:
afx_msg void OnRadio2();
public:
afx_msg void OnRadio3();
public:
CListBox m_list;
public:
afx_msg void OnCheck1();
public:
afx_msg void OnCheck2();
public:
afx_msg void OnCheck3();
};
ButtonListDlg.h和 ButtonListDlg.cpp已列出,我是按书<<精通mfc程序设计>>人民邮电出版社中敲进出的,设置也按书上来,为什
么会出现如下错误:
错误 1 error LNK2001: 无法解析的外部符号 "public: void __thiscall CButtonListApp::OnLbnDblclkList1(void)"
(?OnLbnDblclkList1@CButtonListApp@@QAEXXZ) ButtonList.obj
错误 2 fatal error LNK1120: 1 个无法解析的外部命令 D:\Backup\我的文档\Visual Studio 2005\
开始学就遇阻,很郁闷,希望高手指点!
本程序涉及到button,group box,radio button,check box,list box,static text控件