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

📄 oledbdoc.cpp

📁 Visual_C++.NET实用编程百例
💻 CPP
字号:
// OLEDBDoc.cpp :  COLEDBDoc 类的实现
//

#include "stdafx.h"
#include "OLEDB.h"

#include "OLEDBSet.h"
#include "OLEDBDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// COLEDBDoc

IMPLEMENT_DYNCREATE(COLEDBDoc, CDocument)

BEGIN_MESSAGE_MAP(COLEDBDoc, CDocument)
END_MESSAGE_MAP()


// COLEDBDoc 构造/析构

COLEDBDoc::COLEDBDoc()
{
	// TODO: 在此添加一次性构造代码

}

COLEDBDoc::~COLEDBDoc()
{
}

BOOL COLEDBDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: 在此添加重新初始化代码
	// (SDI 文档将重用该文档)

	return TRUE;
}




// COLEDBDoc 诊断

#ifdef _DEBUG
void COLEDBDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void COLEDBDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG


// COLEDBDoc 命令

⌨️ 快捷键说明

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