資源簡介
需要下載一個excel生成pdf的插件,不然生成pdf會有錯誤。
附帶有vc下用excel繪圖說明。

代碼片段和文件信息
//?excelTst.cpp?:?Defines?the?class?behaviors?for?the?application.
//
#include?“stdafx.h“
#include?“excelTst.h“
#include?“excelTstDlg.h“
#ifdef?_DEBUG
#define?new?DEBUG_NEW
#endif
//?CexcelTstApp
BEGIN_MESSAGE_MAP(CexcelTstApp?CWinApp)
ON_COMMAND(ID_HELP?&CWinApp::onhelp)
END_MESSAGE_MAP()
//?CexcelTstApp?construction
CexcelTstApp::CexcelTstApp()
{
//?TODO:?add?construction?code?here
//?Place?all?significant?initialization?in?InitInstance
}
//?The?one?and?only?CexcelTstApp?object
CexcelTstApp?theApp;
//?CexcelTstApp?initialization
BOOL?CexcelTstApp::InitInstance()
{
//?InitCommonControlsEx()?is?required?on?Windows?XP?if?an?application
//?manifest?specifies?use?of?ComCtl32.dll?version?6?or?later?to?enable
//?visual?styles.??Otherwise?any?window?creation?will?fail.
INITCOMMONCONTROLSEX?InitCtrls;
InitCtrls.dwSize?=?sizeof(InitCtrls);
//?Set?this?to?include?all?the?common?control?classes?you?want?to?use
//?in?your?application.
InitCtrls.dwICC?=?ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
//?Standard?initialization
//?If?you?are?not?using?these?features?and?wish?to?reduce?the?size
//?of?your?final?executable?you?should?remove?from?the?following
//?the?specific?initialization?routines?you?do?not?need
//?Change?the?registry?key?under?which?our?settings?are?stored
//?TODO:?You?should?modify?this?string?to?be?something?appropriate
//?such?as?the?name?of?your?company?or?organization
SetRegistryKey(_T(“Local?AppWizard-Generated?Applications“));
CexcelTstDlg?dlg;
m_pMainWnd?=?&dlg;
INT_PTR?nResponse?=?dlg.DoModal();
if?(nResponse?==?IDOK)
{
//?TODO:?Place?code?here?to?handle?when?the?dialog?is
//??dismissed?with?OK
}
else?if?(nResponse?==?IDCANCEL)
{
//?TODO:?Place?code?here?to?handle?when?the?dialog?is
//??dismissed?with?Cancel
}
//?Since?the?dialog?has?been?closed?return?FALSE?so?that?we?exit?the
//??application?rather?than?start?the?application‘s?message?pump.
return?FALSE;
}
?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????文件??????75231??2015-11-28?14:18??excelTst\excelTst\CApplication.h
?????文件??????13180??2015-11-28?14:18??excelTst\excelTst\CAxis.h
?????文件???????6129??2015-11-28?14:18??excelTst\excelTst\CAxisti
?????文件??????33615??2015-11-28?14:18??excelTst\excelTst\CChart.h
?????文件???????7992??2015-11-28?14:18??excelTst\excelTst\CChartob
?????文件???????8566??2015-11-28?14:18??excelTst\excelTst\CChartob
?????文件???????6137??2015-11-28?14:18??excelTst\excelTst\CChartti
?????文件???????9558??2015-11-28?14:18??excelTst\excelTst\CDataLabel.h
?????文件???????6286??2015-11-28?14:18??excelTst\excelTst\CFont0.h
?????文件??????44670??2015-11-28?14:18??excelTst\excelTst\CRange.h
?????文件??????14831??2015-11-28?14:18??excelTst\excelTst\CSeries.h
?????文件???????2939??2015-11-28?14:18??excelTst\excelTst\CSeriesCollection.h
?????文件???????5888??2015-11-28?14:18??excelTst\excelTst\CTrendline.h
?????文件???????2229??2015-11-28?14:18??excelTst\excelTst\CTrendlines.h
?????文件??????44443??2015-11-28?14:18??excelTst\excelTst\CWorkbook.h
?????文件???????7420??2015-11-28?14:18??excelTst\excelTst\CWorkbooks.h
?????文件??????29240??2015-11-28?14:18??excelTst\excelTst\CWorksheet.h
?????文件???????4980??2015-11-28?14:18??excelTst\excelTst\CWorksheets.h
?????文件??????57952??2015-11-28?14:18??excelTst\excelTst\excelTst.aps
?????文件???????2110??2015-11-28?14:18??excelTst\excelTst\excelTst.cpp
?????文件????????516??2015-11-28?14:18??excelTst\excelTst\excelTst.h
?????文件???????5020??2015-11-28?14:18??excelTst\excelTst\excelTst.rc
?????文件??????10395??2015-11-28?14:18??excelTst\excelTst\excelTst.vcproj
?????文件???????2639??2015-12-03?09:59??excelTst\excelTst\excelTst.vcproj.JennyYang-PC.JennyYang.user
?????文件??????13065??2015-12-03?09:58??excelTst\excelTst\excelTstDlg.cpp
?????文件????????645??2015-11-28?14:18??excelTst\excelTst\excelTstDlg.h
?????文件???????4260??2015-11-28?14:18??excelTst\excelTst\ReadMe.txt
?????文件??????21630??2015-11-28?14:22??excelTst\excelTst\res\excelTst.ico
?????文件????????399??2015-11-28?14:22??excelTst\excelTst\res\excelTst.rc2
?????文件????????634??2015-11-28?14:18??excelTst\excelTst\resource.h
............此處省略12個文件信息
評論
共有 條評論