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

📄 oledbreportmfcdoc.cpp

📁 vc++6.0数据库编程大全一书得各个章节得源码,比较详细.可以仔细参照学习!
💻 CPP
字号:
// OLEDBReportMFCDoc.cpp : implementation of the COLEDBReportMFCDoc class
//

#include "stdafx.h"
#include "OLEDBReportMFC.h"

#include "OLEDBReportMFCDoc.h"

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

/////////////////////////////////////////////////////////////////////////////
// COLEDBReportMFCDoc

IMPLEMENT_DYNCREATE(COLEDBReportMFCDoc, CDocument)

BEGIN_MESSAGE_MAP(COLEDBReportMFCDoc, CDocument)
	//{{AFX_MSG_MAP(COLEDBReportMFCDoc)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// COLEDBReportMFCDoc construction/destruction

COLEDBReportMFCDoc::COLEDBReportMFCDoc()
{
}

COLEDBReportMFCDoc::~COLEDBReportMFCDoc()
{
}

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

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// COLEDBReportMFCDoc serialization

void COLEDBReportMFCDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
	}
	else
	{
	}
}

/////////////////////////////////////////////////////////////////////////////
// COLEDBReportMFCDoc diagnostics

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

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

/////////////////////////////////////////////////////////////////////////////
// COLEDBReportMFCDoc commands

⌨️ 快捷键说明

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