资源简介
简单的程序,适合初学者,还可以在此基础上做自己想要的设计,比如窗口的美化,功能的进一步强化等,初学者不要错过哦~~
代码片段和文件信息
// 1123.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “1123.h“
#include “1123Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMy1123App
BEGIN_MESSAGE_MAP(CMy1123App CWinApp)
//{{AFX_MSG_MAP(CMy1123App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMy1123App construction
CMy1123App::CMy1123App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMy1123App object
CMy1123App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMy1123App initialization
BOOL CMy1123App::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
CMy1123Dlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 44440 2010-01-12 15:31 学生信息查询系统\1123.aps
文件 2403 2010-01-17 16:01 学生信息查询系统\1123.clw
文件 2057 2010-01-03 16:25 学生信息查询系统\1123.cpp
文件 4186 2010-01-17 16:01 学生信息查询系统\1123.dsp
文件 516 2010-01-03 17:14 学生信息查询系统\1123.dsw
文件 1312 2010-01-03 16:25 学生信息查询系统\1123.h
文件 58368 2010-01-17 16:01 学生信息查询系统\1123.ncb
文件 48640 2010-01-17 16:01 学生信息查询系统\1123.opt
文件 663 2010-01-12 15:31 学生信息查询系统\1123.plg
文件 7225 2010-01-12 15:31 学生信息查询系统\1123.rc
文件 1132 2010-01-17 16:00 学生信息查询系统\1123.txt
文件 11168 2010-01-12 15:31 学生信息查询系统\1123Dlg.cpp
文件 1549 2010-01-03 17:08 学生信息查询系统\1123Dlg.h
文件 127031 2010-01-12 15:31 学生信息查询系统\Debug\1123.exe
文件 240016 2010-01-12 15:31 学生信息查询系统\Debug\1123.ilk
文件 12672 2010-01-03 17:09 学生信息查询系统\Debug\1123.obj
文件 43520 2010-01-03 17:11 学生信息查询系统\Debug\1123.opt
文件 402432 2010-01-12 15:31 学生信息查询系统\Debug\1123.pdb
文件 10900 2010-01-12 15:31 学生信息查询系统\Debug\1123.res
文件 57904 2010-01-12 15:31 学生信息查询系统\Debug\1123Dlg.obj
文件 105327 2010-01-03 16:40 学生信息查询系统\Debug\StdAfx.obj
文件 205824 2010-01-12 15:31 学生信息查询系统\Debug\vc60.idb
文件 364544 2010-01-12 15:31 学生信息查询系统\Debug\vc60.pdb
文件 3549 2010-01-03 16:25 学生信息查询系统\ReadMe.txt
文件 7398 2010-01-12 15:31 学生信息查询系统\res\1123.ico
文件 396 2010-01-03 16:25 学生信息查询系统\res\1123.rc2
文件 766 2010-01-12 15:31 学生信息查询系统\res\icon1.ico
文件 1601 2010-01-12 15:31 学生信息查询系统\resource.h
文件 206 2010-01-03 16:25 学生信息查询系统\StdAfx.cpp
文件 1054 2010-01-03 16:25 学生信息查询系统\StdAfx.h
............此处省略6个文件信息
- 上一篇:挂机锁原理与实现vc++源代码
- 下一篇:PL/0编译程序文本(C版本)
相关资源
- 挂机锁原理与实现vc++源代码
- 场景渲染 蓝天 白云模拟程序二
- C++ Wu直线反走样实现代码
- VC++ 实现FTP客户端与服务器
- 基于VC的MFC计算器
- 随机迷宫生成迷宫自动寻路软件VS20
- YUV播放器directXVS2008 MFC完成
- 基于属性重要度的约简算法
- C语言100个经典算法题目+源码
- Ftp服务器与客户端VC++完整版源码
- 高校人事管理系统C++程序设计
- 贪心算法编写的01背包问题c/c++
- C++课程设计大作业
- VC 2015 MFC 图片列表ListCtrl
- MFC读取txt,分割显示到listctrl控件上
- 解决System.Data.SQLite兼容32位和64位问题
- 新标准C++程序设计教材11-20章课后题答
- 复数矩阵 解方程组 C++源代码
- C++课件C++课件C++课件
- 自己写的Apriori算法c++实现
- 测试网速和延迟的MFC 前期代码
- 网速监控 v1.2 MFC VC C++ 网速监控 线程
- 舞伴伴舞问题的C++实现
- rrt实现图片搜索.zip
- 用VC++显示图像的灰度直方图
- VC++开发基于Microsoft Speech SDK的TTS软件
- cc++项目视频.txt
- c++ primer plus 第六版 课后习题答案
- MFC绘图小程序源代码
- FTP文件上传和管理类C++
评论
共有 条评论