资源简介
详细代码与数据库都有,比较详细的列子,基本操作添加删除查看等都有
代码片段和文件信息
// Accomdate.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “Accomdate.h“
#include “AccomdateDlg.h“
#include “LoginDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CAccomdateApp
BEGIN_MESSAGE_MAP(CAccomdateApp CWinApp)
//{{AFX_MSG_MAP(CAccomdateApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CAccomdateApp construction
CAccomdateApp::CAccomdateApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CAccomdateApp object
CAccomdateApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CAccomdateApp initialization
BOOL CAccomdateApp::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
// CAccomdateDlg dlg;
CLoginDlg 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;
}
- 上一篇:谭浩强《c语言程序设计》第三版pdf(含目录)
- 下一篇:MFC截图程序 完整版
相关资源
- MFC下的数据字典字典管理系统
- 数据结构 图 景点信息管理系统
- 停车场管理系统(vc MFC实现)
- C语言实现上机账户管理系统 VS 2010-
- C#火车订票系统
- 基于C语言和SQL SERVER数据库实现的图书
- C语言销售管理系统源代码
- 北邮SQL实验四实验报告
- 课程设计 停车场管理系统 MFC
- 公交自动化系统
- 个人日程管理系统源码MFC
- vc++图书管理系统
- C++\\MFC界面实现教室信息管理系统源代
- c++ access 实现花店管理系统
- MFC 停车场管理系统
- 进销存管理系统MFC SqlServer编程
- MFC制作SQLITE3操作界面
- C++课程设计,高校人员信息管理系统
- MFC+文档图书管理系统C++
- 图书管理系统软件设计C++源码
- 停车场管理系统C语言报告
- MFC写的学生宿舍管理系统
- C++ 学生成绩管理系统125548
- 学生管理系统 mfc 数据库 c++
- C++ MFC 餐厅点菜管理系统
- c++课程设计学生成绩管理系统含源代
- C语言开发简单的学生成绩管理系统
- mfc配合listbox操作数据库
- 用MFC做的图书管理系统
- 餐厅管理系统 C++,自己随便做做的,
评论
共有 条评论