⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 queryborrowinfo.cpp

📁 图书借阅管理 图书借阅管理
💻 CPP
字号:
// QueryBorrowInfo.cpp : implementation file
//

#include "stdafx.h"
#include "Library.h"
#include "QueryBorrowInfo.h"

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

/////////////////////////////////////////////////////////////////////////////
// CQueryBorrowInfo dialog


CQueryBorrowInfo::CQueryBorrowInfo(CWnd* pParent /*=NULL*/)
	: CDialog(CQueryBorrowInfo::IDD, pParent)
{
	//{{AFX_DATA_INIT(CQueryBorrowInfo)
	m_sBookName = _T("");
	m_sBorrower = _T("");
	m_bInLibrary = 2;
	m_sISBN = _T("");
	m_sLibraryBookID = _T("");
	m_sPublishingHouse = _T("");
	m_sWriter = _T("");
	m_sMonth = _T("");
	m_sYear = _T("");
	m_sBorrowCardNum = _T("");
	m_sCondition = _T("");
	//}}AFX_DATA_INIT
}


void CQueryBorrowInfo::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CQueryBorrowInfo)
	DDX_Text(pDX, IDC_BOOKNAME, m_sBookName);
	DDX_Text(pDX, IDC_BORROWER, m_sBorrower);
	DDX_Check(pDX, IDC_INLIBRIRY, m_bInLibrary);
	DDX_Text(pDX, IDC_ISBN, m_sISBN);
	DDX_Text(pDX, IDC_LIBRARYBOOKID, m_sLibraryBookID);
	DDX_Text(pDX, IDC_PUBLISHINGHOUSE, m_sPublishingHouse);
	DDX_Text(pDX, IDC_WRITER, m_sWriter);
	DDX_CBString(pDX, IDC_MONTH, m_sMonth);
	DDX_Text(pDX, IDC_YEAR, m_sYear);
	DDX_Text(pDX, IDC_CARDID, m_sBorrowCardNum);
	DDX_CBString(pDX, IDC_CONDITION, m_sCondition);
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CQueryBorrowInfo, CDialog)
	//{{AFX_MSG_MAP(CQueryBorrowInfo)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CQueryBorrowInfo message handlers

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -