资源简介
简单员工管理系统(适合初学MFC)
代码片段和文件信息
// First32.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “First32.h“
#include “First32Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CFirst32App
BEGIN_MESSAGE_MAP(CFirst32App CWinApp)
//{{AFX_MSG_MAP(CFirst32App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CFirst32App construction
CFirst32App::CFirst32App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CFirst32App object
CFirst32App theApp;
/////////////////////////////////////////////////////////////////////////////
// CFirst32App initialization
BOOL CFirst32App::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
CFirst32Dlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 110659 2021-01-07 23:02 First32\Debug\First32.exe
文件 192168 2021-01-07 23:02 First32\Debug\First32.ilk
文件 13090 2021-01-07 23:02 First32\Debug\First32.obj
文件 5638816 2021-01-07 22:34 First32\Debug\First32.pch
文件 353280 2021-01-07 23:02 First32\Debug\First32.pdb
文件 2796 2021-01-07 22:41 First32\Debug\First32.res
文件 32021 2021-01-07 23:02 First32\Debug\First32Dlg.obj
文件 106055 2021-01-07 22:34 First32\Debug\StdAfx.obj
文件 205824 2021-01-09 15:26 First32\Debug\vc60.idb
文件 364544 2021-01-07 23:02 First32\Debug\vc60.pdb
文件 35880 2021-01-07 22:41 First32\First32.aps
文件 1388 2021-01-11 22:39 First32\First32.clw
文件 2077 2021-01-07 22:15 First32\First32.cpp
文件 4177 2021-01-07 22:15 First32\First32.dsp
文件 522 2021-01-07 22:15 First32\First32.dsw
文件 1335 2021-01-07 22:15 First32\First32.h
文件 58368 2021-01-11 22:39 First32\First32.ncb
文件 53760 2021-01-11 22:39 First32\First32.opt
文件 248 2021-01-09 15:25 First32\First32.plg
文件 5704 2021-01-07 22:41 First32\First32.rc
文件 7130 2021-01-07 22:54 First32\First32Dlg.cpp
文件 1579 2021-01-07 22:54 First32\First32Dlg.h
文件 3597 2021-01-07 22:15 First32\ReadMe.txt
文件 1078 2021-01-07 22:15 First32\res\First32.ico
文件 399 2021-01-07 22:15 First32\res\First32.rc2
文件 961 2021-01-07 22:41 First32\resource.h
文件 209 2021-01-07 22:15 First32\StdAfx.cpp
文件 1054 2021-01-07 22:15 First32\StdAfx.h
目录 0 2021-01-11 22:40 First32\Debug
目录 0 2021-01-11 22:40 First32\res
............此处省略4个文件信息
- 上一篇:c++ 定时关机程序源码
- 下一篇:约瑟夫环问题.docx
相关资源
- C语言实现 设备信息管理系统
- 校园闲置物品管理系统.c(控制台)
- 学生成绩管理系统(c源码)
- 职工信息管理系统源码(控制台)
- 家谱管理系统(C++)源码以及文档
- 链表实现学生管理系统(main.c)
- C++餐饮管理系统源码(控制台)
- C++通讯录管理系统源码(控制台)
- 简单职工管理系统(控制台源码+txt数
- 花草信息管理系统.c
- 客户消费积分管理系统.cpp
- 公司人员月薪级别信息管理系统.cpp
- 职工工资管理系统含流程图
- VC++MFC课程设计的学生成绩管理系统
- 基于Linux下C语言开发的员工管理系统
- mfc+sql 酒店客房管理系统
- c++课程设计学生管理系统浙工大源码
- mysql+dev c++实现订单管理系统
- 课程设计: MFC 学生信息管理系统
- 简易学生管理系统源码 数据结构 大作
- 高考成绩管理系统 c++版
- C语言进阶源码---基于graphics实现图书
- 酒店餐饮管理系统visual c++编程
- vc.6.0 MFC 人事管理系统源码
- C语言通讯录管理系统彩色界面
- 学生成绩管理系统-----C++
- c++课程设计宾馆客房管理系统
- c语言课程设计-职工信息管理系统-单
- 用C编写班级成绩管理系统
- 简易图书管理系统C语言
评论
共有 条评论