资源简介
mfc实现获取系统的版本号和OFFICE版本号
代码片段和文件信息
// os.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “os.h“
#include “osDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// COsApp
BEGIN_MESSAGE_MAP(COsApp CWinApp)
//{{AFX_MSG_MAP(COsApp)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG
ON_COMMAND(ID_HELP CWinApp::onhelp)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// COsApp construction
COsApp::COsApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only COsApp object
COsApp theApp;
/////////////////////////////////////////////////////////////////////////////
// COsApp initialization
BOOL COsApp::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.
#ifdef _AFXDLL
Enable3dControls(); // Call this when using MFC in a shared DLL
#else
Enable3dControlsStatic(); // Call this when linking to MFC statically
#endif
COsDlg dlg;
m_pMainWnd = &dlg;
int 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1184 2008-09-04 16:37 os\os.clw
文件 3507 2008-08-12 16:34 os\ReadMe.txt
文件 1280 2008-08-12 16:34 os\os.h
文件 2007 2008-08-12 16:34 os\os.cpp
文件 1054 2008-08-12 16:34 os\StdAfx.h
文件 204 2008-08-12 16:34 os\StdAfx.cpp
文件 394 2008-08-12 16:34 os\res\os.rc2
文件 1078 2008-08-12 16:34 os\res\os.ico
文件 4087 2008-08-12 16:34 os\os.dsp
文件 512 2008-08-12 16:34 os\os.dsw
文件 50176 2008-09-04 16:38 os\os.ncb
文件 2580 2008-08-12 16:43 os\Debug\os.res
文件 214016 2008-09-04 16:37 os\Debug\vc60.idb
文件 5494560 2008-08-12 16:38 os\Debug\os.pch
文件 364544 2008-08-12 16:43 os\Debug\vc60.pdb
文件 105921 2008-08-12 16:38 os\Debug\StdAfx.obj
文件 106597 2008-08-12 16:43 os\Debug\os.exe
文件 353280 2008-08-12 16:43 os\Debug\os.pdb
文件 14172 2008-08-12 16:43 os\Debug\os.obj
文件 33665 2008-08-12 16:43 os\Debug\osDlg.obj
文件 197804 2008-08-12 16:43 os\Debug\os.ilk
文件 238 2008-09-04 16:37 os\os.plg
文件 1373 2008-08-12 16:41 os\osDlg.h
文件 5397 2008-08-12 16:43 os\os.rc
文件 818 2008-08-12 16:43 os\Resource.h
文件 35832 2008-08-12 16:43 os\os.aps
文件 6953 2008-08-12 16:43 os\osDlg.cpp
文件 48640 2008-09-04 16:38 os\os.opt
目录 0 2008-08-12 16:34 os\res
目录 0 2008-08-12 16:34 os\Debug
............此处省略4个文件信息
- 上一篇:C++语言释难解惑
- 下一篇:VC++ 对话框 滚轮 计算器
相关资源
- MinGW Windows 下gnu C/C++编译器
- 超级玛丽c++代码(经典小游戏)
- C++消消乐小游戏 windows程序设计课程设
- Windows下基于ModbusTcp的Server端开发C语言
- VC6通过dll读写excel文件,不需要安装
- 增进版学生选课系统MFC选课系统哦!
- 《算法珠玑》Java版本 一个最精简的题
- 操作系统 内存管理 模拟 图形界面
- VC++2008开发Windows蓝牙通信程序
- PN532-libnfc-mfoc-mfcuk-windows
- 谷歌C++编码规范-中文 2018-03-30 最新版
- 操作系统课程设计:Windows 命令接口之
- windows 讯飞语音听写和微软sapi c++ 实现
- 数据结构c语言版本严蔚敏清华大学
- 数据结构c语言版本
- windows程序设计大作业 斗地主 mfc
- Introduction to 64Bit Windows Assembly
- C语言版本2048游戏.rar
- 画图软件(直线、矩形、椭圆、三角
- C语言在vc下编写的Windows窗口小程序
- VC++6.0 MFC的学生信息管理系统
- windows更新清理工具
- 数字信号处理C语言程序集DSP算法大全
- 传奇源代码cpp版本.zip
-
Inside the C++ ob
ject Model中英两个版本 - 控制台三国杀第三版C++VS2010——公布
- 简易QQ mfc实现源码(学习使用的简单
- C++绘制曲线图 温度计图
- Visual Assist X_最新破解版破解所有版本
- 简单推理机实现_动物推断_VS2010版本
评论
共有 条评论