exportexceldoc.cpp

来自「vc输出到EXCEL.大家看看. 应用程序向导已为您创建了这个 exporte」· C++ 代码 · 共 79 行

CPP
79
字号
// exportexcelDoc.cpp : CexportexcelDoc 类的实现
//

#include "stdafx.h"
#include "exportexcel.h"

#include "exportexcelDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#endif


// CexportexcelDoc

IMPLEMENT_DYNCREATE(CexportexcelDoc, CDocument)

BEGIN_MESSAGE_MAP(CexportexcelDoc, CDocument)
END_MESSAGE_MAP()


// CexportexcelDoc 构造/析构

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

}

CexportexcelDoc::~CexportexcelDoc()
{
}

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

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

	return TRUE;
}




// CexportexcelDoc 序列化

void CexportexcelDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: 在此添加存储代码
	}
	else
	{
		// TODO: 在此添加加载代码
	}
}


// CexportexcelDoc 诊断

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

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


// CexportexcelDoc 命令

⌨️ 快捷键说明

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