资源简介
这里是 VC与JavaScript交互(三) ———— JS调用C++,下载的时候需要看清楚
代码片段和文件信息
// JSCppInteractive.cpp : 定义应用程序的类行为。
//
#include “stdafx.h“
#include “JSCppInteractive.h“
#include “JSCppInteractiveDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
// CJSCppInteractiveApp
BEGIN_MESSAGE_MAP(CJSCppInteractiveApp CWinApp)
ON_COMMAND(ID_HELP &CWinApp::onhelp)
END_MESSAGE_MAP()
// CJSCppInteractiveApp 构造
CJSCppInteractiveApp::CJSCppInteractiveApp()
{
// TODO: 在此处添加构造代码,
// 将所有重要的初始化放置在 InitInstance 中
}
// 唯一的一个 CJSCppInteractiveApp 对象
CJSCppInteractiveApp theApp;
// CJSCppInteractiveApp 初始化
BOOL CJSCppInteractiveApp::InitInstance()
{
// 如果一个运行在 Windows XP 上的应用程序清单指定要
// 使用 ComCtl32.dll 版本 6 或更高版本来启用可视化方式,
//则需要 InitCommonControlsEx()。否则,将无法创建窗口。
INITCOMMONCONTROLSEX InitCtrls;
InitCtrls.dwSize = sizeof(InitCtrls);
// 将它设置为包括所有要在应用程序中使用的
// 公共控件类。
InitCtrls.dwICC = ICC_WIN95_CLASSES;
InitCommonControlsEx(&InitCtrls);
CWinApp::InitInstance();
AfxEnableControlContainer();
// 标准初始化
// 如果未使用这些功能并希望减小
// 最终可执行文件的大小,则应移除下列
// 不需要的特定初始化例程
// 更改用于存储设置的注册表项
// TODO: 应适当修改该字符串,
// 例如修改为公司或组织名
SetRegistryKey(_T(“应用程序向导生成的本地应用程序“));
CJSCppInteractiveDlg dlg;
m_pMainWnd = &dlg;
INT_PTR nResponse = dlg.DoModal();
if (nResponse == IDOK)
{
// TODO: 在此处放置处理何时用“确定”来关闭
// 对话框的代码
}
else if (nResponse == IDCANCEL)
{
// TODO: 在此放置处理何时用“取消”来关闭
// 对话框的代码
}
// 由于对话框已关闭,所以将返回 FALSE 以便退出应用程序,
// 而不是启动应用程序的消息泵。
return FALSE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
目录 0 2015-08-26 16:24 JSCppInteractive\
目录 0 2015-08-26 16:24 JSCppInteractive\JSCppInteractive\
文件 1779 2015-08-26 15:53 JSCppInteractive\JSCppInteractive\JSCppInteractive.cpp
文件 501 2015-08-26 15:39 JSCppInteractive\JSCppInteractive\JSCppInteractive.h
文件 323 2015-08-26 16:11 JSCppInteractive\JSCppInteractive\JSCppInteractive.htm
文件 5164 2015-08-26 15:39 JSCppInteractive\JSCppInteractive\JSCppInteractive.rc
文件 5586 2015-08-26 15:39 JSCppInteractive\JSCppInteractive\JSCppInteractive.vcproj
文件 4040 2015-08-26 16:11 JSCppInteractive\JSCppInteractive\JSCppInteractiveDlg.cpp
文件 876 2015-08-26 16:07 JSCppInteractive\JSCppInteractive\JSCppInteractiveDlg.h
文件 3053 2015-08-26 15:39 JSCppInteractive\JSCppInteractive\ReadMe.txt
文件 587 2015-08-26 15:39 JSCppInteractive\JSCppInteractive\Resource.h
目录 0 2015-08-26 16:23 JSCppInteractive\JSCppInteractive\res\
文件 21630 2005-11-11 22:45 JSCppInteractive\JSCppInteractive\res\JSCppInteractive.ico
文件 372 2015-08-26 15:39 JSCppInteractive\JSCppInteractive\res\JSCppInteractive.rc2
文件 147 2015-08-26 15:39 JSCppInteractive\JSCppInteractive\stdafx.cpp
文件 2534 2015-08-26 15:39 JSCppInteractive\JSCppInteractive\stdafx.h
文件 913 2015-08-26 15:39 JSCppInteractive\JSCppInteractive.sln
目录 0 2015-08-26 16:24 JSCppInteractive\debug\
文件 110592 2015-08-26 16:11 JSCppInteractive\debug\JSCppInteractive.exe
- 上一篇:使用Qt做的数据管理系统
- 下一篇:C++开发精灵对战小游戏
相关资源
- C++开发精灵对战小游戏
- 使用Qt做的数据管理系统
- c++测试题aaaa
- c++职工工资管理系统
- 分数计算器C++
- c++职工管理系统链表
- c++密度据类MFC可视化
- 电信计费系统C++
- c++ 最小二乘算法拟合球心 使用Vs200
- 感染EXE文件的VC++源码请谨慎使用.
- 仓库管理系统 c++
- C++生产者消费者问题
- 基于RFID门禁系统源码 C/C++
- 多国语言Demo源码 c++builder6编写
- C++ IOCP socket完成端口视频教程及源码
- 自学VC++2010;用ADO方法在ACCESS2010数据
- C++primer5
- vc++判断显示器是否支持多点触摸
- WPS、微软EXCEL通用C++接口表格通用C+
- VS2017 C++ 编写一个通过注册表自定义软
- C++短信猫短信收发封装
- 如何在状态栏中添加进度条(visual
- rgb24转yuv420高效率 完整代码,C++实现
- c++ 数据结构6种排序算法及关键词比较
- 编译原理C++实现判断LL1文法
- 正则表达式—>NFA—>DFA—>DFA最小化
- C++实现的高效A*算法
- 基于C++的环形缓冲区.zip
- 8数码游戏 A*算法 C++实现
- VS2012-C++编写、调用DLL库教程
评论
共有 条评论