资源简介
office 文档自动打印
代码片段和文件信息
// WordToPrint.cpp : 定义控制台应用程序的入口点。
//
#include “stdafx.h“
#include se.h>
#include
#include
#include
#include
using namespace std ;
#define CMT_DESK_NAME “MT_Desktop“
HRESULT OLEMethod(int nType VARIANT* pvResult IDispatch* pDisp LPOLESTR ptName int cArgs...)
{
if(!pDisp)
{
return E_FAIL ;
}
va_list marker ;
va_start(marker cArgs) ;
DISPPARAMS dp = {NULL NULL 0 0} ;
DISPID dispidNamed = DISPID_PROPERTYPUT ;
DISPID dispID ;
char szName[200] ;
WideCharToMultiByte(CP_ACP 0 ptName -1 szName 256 NULL NULL) ;
HRESULT hr = pDisp->GetIDsOfNames(IID_NULL &ptName 1 LOCALE_USER_DEFAULT &dispID) ;
if(hr != S_OK)
{
return hr ;
}
VARIANT* pArgs = new VARIANT[cArgs+1] ;
for(int i = 0 ;i < cArgs ; i++)
{
pArgs[i] = va_arg(marker VARIANT) ;
}
dp.cArgs = cArgs ;
dp.rgvarg = pArgs ;
if(nType & DISPATCH_PROPERTYPUT)
{
dp.cNamedArgs = 1 ;
dp.rgdisp
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 905 2013-08-20 12:00 AutoPrint.sln
..A..H. 26112 2014-04-02 16:14 AutoPrint.suo
文件 2603008 2013-05-28 19:28 Debug\BlowSnowd.dll
文件 1823744 2013-10-16 17:01 Debug\OfficeToPrint.exe
文件 5819872 2013-10-16 17:01 Debug\OfficeToPrint.ilk
文件 11463680 2013-10-16 17:01 Debug\OfficeToPrint.pdb
文件 8300 2013-10-16 17:01 OfficeToPrint\Debug\BuildLog.htm
文件 65 2013-10-16 17:01 OfficeToPrint\Debug\mt.dep
文件 406 2013-10-16 16:27 OfficeToPrint\Debug\OfficeToPrint.exe.em
文件 472 2013-10-16 16:27 OfficeToPrint\Debug\OfficeToPrint.exe.em
文件 381 2013-10-16 17:01 OfficeToPrint\Debug\OfficeToPrint.exe.intermediate.manifest
文件 68689 2013-10-16 17:01 OfficeToPrint\Debug\OfficeToPrint.obj
文件 22347776 2013-08-24 18:24 OfficeToPrint\Debug\OfficeToPrint.pch
文件 467325 2013-08-24 18:24 OfficeToPrint\Debug\stdafx.obj
文件 1035264 2013-10-16 17:01 OfficeToPrint\Debug\vc90.idb
文件 2011136 2013-10-16 17:01 OfficeToPrint\Debug\vc90.pdb
文件 10305 2013-10-16 17:01 OfficeToPrint\OfficeToPrint.cpp
文件 4963 2013-08-21 12:04 OfficeToPrint\OfficeToPrint.vcproj
文件 1504 2013-10-16 17:01 OfficeToPrint\OfficeToPrint.vcproj.2013-003-PC.a.user
文件 1415 2014-04-02 16:14 OfficeToPrint\OfficeToPrint.vcproj.MTRush-PC.MTRush.user
文件 1207 2013-08-19 11:25 OfficeToPrint\ReadMe.txt
文件 216 2013-08-19 11:25 OfficeToPrint\stdafx.cpp
文件 253 2013-08-19 11:31 OfficeToPrint\stdafx.h
文件 498 2013-08-19 11:25 OfficeToPrint\targetver.h
文件 14781440 2014-04-02 16:14 AutoPrint.ncb
目录 0 2013-10-16 17:01 OfficeToPrint\Debug
目录 0 2013-10-16 17:01 Debug
目录 0 2014-04-02 16:14 OfficeToPrint
----------- --------- ---------- ----- ----
62478936 28
............此处省略1个文件信息
- 上一篇:7z sdk的C++封装
- 下一篇:定时器 c++源码
评论
共有 条评论