资源简介
C++ 创建读写PDF例程,适合输出个性化设计的PDF报表、文档!!
代码片段和文件信息
// InstallPrinter.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “InstallPrinter.h“
#include “InstallPrinterDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CInstallPrinterApp
BEGIN_MESSAGE_MAP(CInstallPrinterApp CWinApp)
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
// CInstallPrinterApp construction
CInstallPrinterApp::CInstallPrinterApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
// The one and only CInstallPrinterApp object
CInstallPrinterApp theApp;
// CInstallPrinterApp initialization
BOOL CInstallPrinterApp::InitInstance()
{
// InitCommonControls() 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.
InitCommonControls();
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“));
CInstallPrinterDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2006-03-16 10:55 InstallPrinter\
文件 1962 2006-01-12 11:20 InstallPrinter\InstallPrinter.cpp
文件 550 2006-01-12 11:20 InstallPrinter\InstallPrinter.h
文件 1142 2006-03-16 09:02 InstallPrinter\InstallPrinter.log.txt
文件 5798 2006-03-14 16:02 InstallPrinter\InstallPrinter.rc
文件 917 2006-01-12 11:20 InstallPrinter\InstallPrinter.sln
文件 4803 2006-03-14 15:07 InstallPrinter\InstallPrinter.vcproj
文件 22 2006-03-16 09:02 InstallPrinter\InstallPrinter.ver
文件 19706 2006-03-15 16:54 InstallPrinter\InstallPrinterDlg.cpp
文件 1008 2006-03-14 16:19 InstallPrinter\InstallPrinterDlg.h
目录 0 2006-03-16 09:40 InstallPrinter\pdfwriter_cfg_file\
文件 179 2006-03-15 15:12 InstallPrinter\pdfwriter_cfg_file\pdfwrite.rsp
文件 4580 2006-01-12 11:20 InstallPrinter\ReadMe.txt
目录 0 2006-03-16 09:05 InstallPrinter\redmon17\
文件 116224 2001-10-28 17:42 InstallPrinter\redmon17\redmonnt.dll
文件 40960 2006-01-16 09:57 InstallPrinter\redmon17\unredmon.exe
目录 0 2006-03-16 09:03 InstallPrinter\Release\
文件 53248 2006-03-16 09:02 InstallPrinter\Release\InstallPrinter.exe
目录 0 2006-03-16 09:03 InstallPrinter\res\
文件 21630 2001-04-20 00:48 InstallPrinter\res\InstallPrinter.ico
文件 704 2006-01-12 11:20 InstallPrinter\res\InstallPrinter.manifest
文件 405 2006-01-12 11:20 InstallPrinter\res\InstallPrinter.rc2
文件 1054 2006-03-14 16:02 InstallPrinter\resource.h
文件 214 2006-01-12 11:20 InstallPrinter\stdafx.cpp
文件 1864 2006-01-12 11:20 InstallPrinter\stdafx.h
- 上一篇:ISM C语言精简版
- 下一篇:mfc二叉树的实现,涉及到增加节点等运算
相关资源
- C++获取计算机的CPU ID,硬盘序列号等
- C++头文件转delphi工具 + 源码
- C语言编程常见问题解答.pdf
- 国际象棋的qt源代码
- C++中头文件与源文件的作用详解
- C++多线程网络编程Socket
- VC++ 多线程文件读写操作
- 利用C++哈希表的方法实现电话号码查
- 移木块游戏,可以自编自玩,vc6.0编写
- C++纯文字DOS超小RPG游戏
- VC++MFC小游戏实例教程(实例)+MFC类库
- 连铸温度场计算程序(C++)
- 6自由度机器人运动学正反解C++程序
- Em算法(使用C++编写)
- libstdc++-4.4.7-4.el6.i686.rpm
- VC++实现CMD命令执行与获得返回信息
- 白话C++(全)
- C++标准库第1、2
- 大数类c++大数类
- C++语言编写串口调试助手
- c++素数筛选法
- 《Linux程序设计》第四版pdf高清电子版
- QT5开发及源代码
- C++ mqtt 用法
- 商品库存管理系统 C++ MFC
- c++ 多功能计算器
- C++17 In Detail
- 嵌入式QtC++编程课件
- 嵌入式c编程语言入门与深入.pdf58199
- 颜色识别形状识别STM103嵌入式代码
川公网安备 51152502000135号
评论
共有 条评论