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

📄 depedit9.cpp

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

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

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

/////////////////////////////////////////////////////////////////////////////
// depedit9 dialog


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

	//{{AFX_DATA_INIT(depedit9)
	m_depno = _T("");
	m_depname = _T("");
	m_depmiaoshu = _T("");
	//}}AFX_DATA_INIT
}


void depedit9::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 depedit9::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(depedit9)
	DDX_Text(pDX, IDC_EDIT1, m_depno);
	DDX_Text(pDX, IDC_EDIT2, m_depname);
	DDX_Text(pDX, IDC_EDIT3, m_depmiaoshu);
	//}}AFX_DATA_MAP
}


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

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

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

// {8A9E229E-CBB7-4659-B45F-0A8EFA69B096}
static const IID IID_Idepedit9 =
{ 0x8a9e229e, 0xcbb7, 0x4659, { 0xb4, 0x5f, 0xa, 0x8e, 0xfa, 0x69, 0xb0, 0x96 } };

BEGIN_INTERFACE_MAP(depedit9, CDialog)
	INTERFACE_PART(depedit9, IID_Idepedit9, Dispatch)
END_INTERFACE_MAP()

/////////////////////////////////////////////////////////////////////////////
// depedit9 message handlers

⌨️ 快捷键说明

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