资源简介
最简单的VC++6.0编译器,亲测win10 64位可用,附教程很详细,有问题请私聊我提供帮助。仅供学习,侵权联系删。
代码片段和文件信息
// Commands.cpp : implementation file
//
#include “stdafx.h“
#include “FileTool.h“
#include “Commands.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CCommands
CCommands::CCommands()
{
m_pApplication = NULL;
}
CCommands::~CCommands()
{
ASSERT (m_pApplication != NULL);
m_pApplication->Release();
}
void CCommands::SetApplicationobject(IApplication* pApplication)
{
// This function assumes pApplication has already been AddRef‘d
// for us which CDSAddIn did in its QueryInterface call
// just before it called us.
m_pApplication = pApplication;
}
/////////////////////////////////////////////////////////////////////////////
// CCommands methods
STDMETHODIMP CCommands::AddFileToProject()
{
AFX_MANAGE_STATE(AfxGetStaticModuleState());
// TODO: Replace this with the actual code to execute this command
// Use m_pApplication to access the Developer Studio Application object
// and VERIFY_OK to see error strings in DEBUG builds of your add-in
// (see stdafx.h)
VERIFY_OK(m_pApplication->EnableModeless(VARIANT_FALSE));
HRESULT hr;
CComPtr m_pDispatch(NULL);
hr=m_pApplication->get_Projects(&m_pDispatch);
if(FAILED(hr))
{
AfxMessageBox(“Unable to obtain the IProject‘s pointer“);
return S_FALSE;
}
CComQIPtr m_Project(m_pDispatch);
long count;
hr=m_Project->get_Count(&count);
if(FAILED(hr))
{
AfxMessageBox(“Unable to obtain the number of projects in the workspace“);
return S_FALSE;
}
if(count > 0)
{
CFileDialog AddFiles(TRUE);
AddFiles.m_ofn.lpstrtitle = “Add Files To Project“;
AddFiles.m_ofn.lpstrFilter = “All Files(*.*)\0*.*\0\0“;
AddFiles.m_ofn.Flags = AddFiles.m_ofn.Flags | OFN_ALLOWMULTISELECT;
char test[2000];
test[0]=‘\0‘;
AddFiles.m_ofn.lpstrFile = test;
AddFiles.m_ofn.nMaxFile = 2000;
if(AddFiles.DoModal() == IDOK)
{
POSITION position=AddFiles.GetStartPosition();
CString file_name;
m_pDispatch=NULL;
hr=m_pApplication->get_ActiveProject(&m_pDispatch);
if(FAILED(hr))
{
AfxMessageBox(“Unable to obtain the ActiveProject pointer“);
return S_FALSE;
}
CComQIPtr m_ActiveProject(m_pDispatch);
CComBSTR type;
hr=m_ActiveProject->get_Type(&type);
if(FAILED(hr))
{
AfxMessageBox(“Unable to obtain the ActiveProject type“);
return S_FALSE;
}
CString s_type(type);
CComQIPtr m_BuildProject;
m_BuildProject=m_ActiveProject;
CComVariant reserved=NULL;
while(position != NULL)
{
file_name=AddFiles.GetNextPathName(position);
if(s_type == “Build“)
{
hr=m_BuildProject->AddFile(CComBSTR(file_name) reserved);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 4602 1999-05-27 12:37 vc++6.0\安装包\filetool\Commands.cpp
文件 1022 1999-01-05 15:26 vc++6.0\安装包\filetool\Commands.h
文件 90895 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\Commands.obj
文件 34165 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\Commands.sbr
文件 77607 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\DSAddIn.obj
文件 23943 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\DSAddIn.sbr
文件 134788 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\FileTool.dll
文件 1018 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\FileTool.exp
文件 1768 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\FileTool.lib
文件 71443 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\FileTool.map
文件 158420 2019-02-11 21:21 vc++6.0\安装包\filetool\Debug\FileTool.obj
文件 6663236 2019-02-11 21:21 vc++6.0\安装包\filetool\Debug\FileTool.pch
文件 877568 2019-02-11 21:20 vc++6.0\安装包\filetool\Debug\FileTool.pdb
文件 4580 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\FileTool.res
文件 28120 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\FileTool.sbr
文件 1724 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\FileTool.tlb
文件 118078 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\StdAfx.obj
文件 1536767 2019-02-10 22:40 vc++6.0\安装包\filetool\Debug\StdAfx.sbr
文件 254976 2019-02-11 21:21 vc++6.0\安装包\filetool\Debug\vc60.idb
文件 462848 2019-02-11 21:21 vc++6.0\安装包\filetool\Debug\vc60.pdb
文件 4296 1999-01-05 15:54 vc++6.0\安装包\filetool\DSAddIn.cpp
文件 1333 1999-01-05 15:23 vc++6.0\安装包\filetool\DSAddIn.h
文件 4602 1999-05-27 12:37 vc++6.0\安装包\filetool\FileTool\Commands.cpp
文件 1022 1999-01-05 15:26 vc++6.0\安装包\filetool\FileTool\Commands.h
文件 4296 1999-01-05 15:54 vc++6.0\安装包\filetool\FileTool\DSAddIn.cpp
文件 1333 1999-01-05 15:23 vc++6.0\安装包\filetool\FileTool\DSAddIn.h
文件 4506 1999-01-05 15:17 vc++6.0\安装包\filetool\FileTool\FileTool.cpp
文件 302 1999-01-05 15:17 vc++6.0\安装包\filetool\FileTool\FileTool.def
文件 4752 1999-09-10 12:44 vc++6.0\安装包\filetool\FileTool\FileTool.dsp
文件 539 1999-01-05 15:17 vc++6.0\安装包\filetool\FileTool\FileTool.dsw
............此处省略46个文件信息
相关资源
- c++语言写的 图书管理系统
- MFC 常用界面组件集合CGridCtrl
- MVC++环境2005-2017全部一键安装包x86 x
- C++MFC学习资料整合大全
- C/C++程序员面试宝典
- xlsx读写库xlsxio的编译及简单策划配置
- C++高级编程第4版(Professional C++ 4th
- 国嵌唐老师c++课件(完整版).pdf
- Visual C++视频技术方案宝典的光盘源代
- SolidWorks 2008二次开发基础与VC++
- 计算机图形学实践教程随书源代码
- 车辆检测C++简易代码含测试视频
- 《Visual C++音视频编解码技术及实践》
- VC++深入详解(课件+源码)
- C++文字RPG
- C++程序设计(谭浩强)PDF扫描版第1卷
- VS2015 C++和C++的通过SOAP的WebService,C
- C/C++常用算法手册带详细书签目录
- 浙工大研究生考试958C++历年真题2011
- 《数字图像处理与机器视觉》张铮等
- Essential C++ (高清 中文版)
-
C++ PandoraBox-rali
nk-mt7620-xiaomi-mini-sq - DX11,DX图形设计游戏跳一跳C++实现
- Effective C++ 中文带目录
- Visual c++ 2010 Express中文版
- Microsoft Visual C++ 2015 Redistributable (x
- visual c++教程第三版郑阿奇,丁有和课
- 编译好的c++机器学习库shark4.0
- C++ STL教程pdf
- C#调用C++的DLL
评论
共有 条评论