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

📄 selbook.cpp

📁 图书管理系统可进行查询,添加,修改,等操作 用树行结构为图书馆进行图书分类
💻 CPP
字号:
// selbook.cpp : implementation file
//

#include "stdafx.h"
#include "图书管理.h"
#include "selbook.h"

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

/////////////////////////////////////////////////////////////////////////////
// selbook dialog


selbook::selbook(CWnd* pParent /*=NULL*/)
	: CDialog(selbook::IDD, pParent)
{
	EnableAutomation();

	//{{AFX_DATA_INIT(selbook)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}


void selbook::OnFinalRelease()
{
	// When the last reference for an automation object is released
	// OnFinalRelease is called.  The base class will automatically
	// deletes the object.  Add additional cleanup required for your
	// object before calling the base class.

	CDialog::OnFinalRelease();
}

void selbook::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(selbook)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


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

BEGIN_DISPATCH_MAP(selbook, CDialog)
	//{{AFX_DISPATCH_MAP(selbook)
		// NOTE - the ClassWizard will add and remove mapping macros here.
	//}}AFX_DISPATCH_MAP
END_DISPATCH_MAP()

// Note: we add support for IID_Iselbook to support typesafe binding
//  from VBA.  This IID must match the GUID that is attached to the 
//  dispinterface in the .ODL file.

// {BABD7540-DF8F-4C61-B754-0A2BB53A70D2}
static const IID IID_Iselbook =
{ 0xbabd7540, 0xdf8f, 0x4c61, { 0xb7, 0x54, 0xa, 0x2b, 0xb5, 0x3a, 0x70, 0xd2 } };

BEGIN_INTERFACE_MAP(selbook, CDialog)
	INTERFACE_PART(selbook, IID_Iselbook, Dispatch)
END_INTERFACE_MAP()

/////////////////////////////////////////////////////////////////////////////
// selbook message handlers

⌨️ 快捷键说明

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