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

📄 exportexceldoc.cpp

📁 vc输出到EXCEL.大家看看. 应用程序向导已为您创建了这个 exportexcel 应用程序。此应用程序不仅演示 Microsoft 基础类的基本使用方法
💻 CPP
字号:
// 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 + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -