oledbreportmfcdoc.cpp

来自「< VISUAL C++ 数据库编程技术与实例>> 配套源码 」· C++ 代码 · 共 76 行

CPP
76
字号
// 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 + =
减小字号Ctrl + -
显示快捷键?