资源简介
里面包含了完整的程序包及程序步骤过程,欢迎交流。
代码片段和文件信息
/****
* ATM.cpp
* 版权:湖北师范学院计算机学院 0801班 王定桥所有
* 程序用途:c++面向对象模拟ATM取款机
* 程序作者: 王定桥
* 时间:2010-12-31
****/
#include “stdafx.h“
#include “ATM.h“
#include “ATMDlg.h“
#include “Syssound.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CATMApp
BEGIN_MESSAGE_MAP(CATMApp CWinApp)
//{{AFX_MSG_MAP(CATMApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CATMApp construction
CATMApp::CATMApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
AfxOleInit();
m_pConnection.CreateInstance(__uuidof(Connection));
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CATMApp object
CATMApp theApp;//全局对象
/////////////////////////////////////////////////////////////////////////////
// CATMApp initialization
BOOL CATMApp::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
CATMDlg dlg;
m_pMainWnd = &dlg;
SetDialogBkColor(RGB(51102153)RGB(000));
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;
}
BOOL CATMApp::InitDatabase()
{
// 在ADO操作中用try...catch()来捕获错误信息
if(m_pConnection->IsolationLevel)
try
{
// 打开本地Access库
m_pConnection->Open(“Provider=Microsoft.Jet.OLEDB.4.0;Data Source=.\\Data\\ATM.mdb“““““adModeUnknown);
}
catch(_com_error e)
{
AfxMessageBox(“数据库连接失败,确认数据库是否在当前路径下!“MB_OK|MB_ICONHAND);
return FALSE;
}
return TRUE;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 3856 2011-01-02 16:42 2008115010116王定桥\ATM\ATM.clw
文件 2697 2011-01-01 22:40 2008115010116王定桥\ATM\ATM.cpp
文件 6966 2011-01-01 20:21 2008115010116王定桥\ATM\ATM.dsp
文件 514 2011-01-01 20:21 2008115010116王定桥\ATM\ATM.dsw
文件 7933997 2011-01-02 16:41 2008115010116王定桥\ATM\ATM.exe
文件 1441 2011-01-01 16:57 2008115010116王定桥\ATM\ATM.h
文件 13739 2011-01-01 17:04 2008115010116王定桥\ATM\ATM.rc
文件 10326 2011-01-01 23:20 2008115010116王定桥\ATM\ATMDlg.cpp
文件 2163 2011-01-01 16:57 2008115010116王定桥\ATM\ATMDlg.h
文件 274432 2011-01-02 16:35 2008115010116王定桥\ATM\Data\ATM.mdb
文件 7933997 2011-01-02 16:33 2008115010116王定桥\ATM\Debug\ATM.exe
文件 7699796 2011-01-01 20:19 2008115010116王定桥\ATM\Debug\ATM.pch
文件 6461360 2011-01-01 20:19 2008115010116王定桥\ATM\Debug\ATM.res
文件 90661 2008-04-14 20:00 2008115010116王定桥\ATM\Debug\msado15.tlh
文件 76635 2008-04-14 20:00 2008115010116王定桥\ATM\Debug\msado15.tli
文件 7201 2011-01-02 16:31 2008115010116王定桥\ATM\Getmoney.cpp
文件 1746 2011-01-01 16:57 2008115010116王定桥\ATM\Getmoney.h
文件 3300 2011-01-01 17:08 2008115010116王定桥\ATM\Mainmenu.cpp
文件 1525 2011-01-01 16:57 2008115010116王定桥\ATM\Mainmenu.h
文件 5203 2011-01-01 22:51 2008115010116王定桥\ATM\Modpwd.cpp
文件 1628 2011-01-01 16:57 2008115010116王定桥\ATM\Modpwd.h
文件 90619 2008-04-14 20:00 2008115010116王定桥\ATM\msado15.tlh
文件 76614 2008-04-14 20:00 2008115010116王定桥\ATM\msado15.tli
文件 3509 2011-01-01 00:22 2008115010116王定桥\ATM\Query.cpp
文件 1511 2011-01-01 16:57 2008115010116王定桥\ATM\Query.h
文件 3525 2010-12-28 16:06 2008115010116王定桥\ATM\ReadMe.txt
文件 401 2010-12-28 11:13 2008115010116王定桥\ATM\res\ATM MFC版.rc2
文件 2750 2010-12-28 14:41 2008115010116王定桥\ATM\res\ATM.ico
文件 395 2010-12-28 15:54 2008115010116王定桥\ATM\res\ATM.rc2
文件 29456 2011-01-01 14:20 2008115010116王定桥\ATM\res\getmoney\pic1 (4).bmp
............此处省略57个文件信息
- 上一篇:c++读取csv文件
- 下一篇:libusb bulk传输 STM32上位机程序
相关资源
- Dlg_OpenGL
- MFC显示BMP格式图片
- mfc/cuda/opengl程序
- MFC北京公交车查询系统C/C++
- MFC局域网聊天室可屏蔽、可私聊C++ 客
- MFC航空客运订票系统
- 基于MFC的虚拟键盘
- OGRE嵌入MFC代码以及嵌入过程说明
- MFC实现rtsp视频流的播放
- teechart代码教程
- GDI+绘制矩形,并且实现可旋转、缩放
- MFC 绘制半透明文字并保存为背景透明
- MFC 常用界面组件集合CGridCtrl
- C++MFC学习资料整合大全
- DES加解密 MFC
- MFC Tab Control 模态框 非模态框
- MFC编写的圆拟合工具
- opengl在MFC平台上绘制三维图形并实现
- 鸡啄米VS2010-MFC编程入门教程
- 对话框opengl简单程序
- VC6.0+MFC类库参考手册中文完整版
- 数据库大作业,MFC 商品管理系统
- MFCVC++读写DXF文件
- MFC Windows程序设计(第五版)中文版
- VISUAL C++MFC编程85个PDF电子书
- 深入浅出MFC简体中文版.rar pdf清晰版
- VC6.0+ACCESS图书管理系统源代码
- 学生成绩管理系统VC6.0_MFC实现
- MFC下利用OPENCV添加显示图片
- 基于mfc中opengl鼠标控制视图旋转缩放
评论
共有 条评论