资源简介
基于VC6.0软件平台,使用MFC建立应用程序。通过ADO连接Access数据库将数据导入到MFC界面中的listview空间中。并且可以在界面中对数据库中的数据进行添加和删除操作。
代码片段和文件信息
// MSPRO.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “MSPRO.h“
#include “MSPRODlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMSPROApp
BEGIN_MESSAGE_MAP(CMSPROApp CWinApp)
//{{AFX_MSG_MAP(CMSPROApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMSPROApp construction
CMSPROApp::CMSPROApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMSPROApp object
CMSPROApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CMSPROApp initialization
BOOL CMSPROApp::InitInstance()
{
AfxEnableControlContainer();
AfxOleInit();///初始化COM库
////////////连接数据库//////////////
HRESULT hr;
try
{
hr = m_pConnection.CreateInstance(“ADODB.Connection“);///创建Connection对象
if(SUCCEEDED(hr))
{
hr = m_pConnection->Open(“Provider=Microsoft.Jet.OLEDB.4.0;Data Source= AdoData.mdb“““““adModeUnknown);///连接数据库
//上面一句中连接字串中的Provider是针对ACCESS2000环境的,对于ACCESS97
//需要改为:Provider=Microsoft.Jet.OLEDB.3.51; }
}
}
catch(_com_error e)///捕捉异常
{
CString errormessage;
errormessage.Format(“连接数据库失败!\r\n错误信息:%s“e.ErrorMessage());
AfxMessageBox(errormessage);///显示错误信息
return FALSE;
}
// 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
CMSPRODlg 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;
}
int CMSPROApp::ExitInstance()
{
// TODO: Add your specialized code here and/or call the base class
if(m_pConnection->State)
m_pConnection->Close(); ///如果已经打开了连接则关闭它
return CWinApp::ExitInstance();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 425984 2011-07-23 21:10 MSPRO\Adodata.mdb
文件 90733 2010-11-09 22:51 MSPRO\Debug\msado15.tlh
文件 76671 2010-11-09 22:51 MSPRO\Debug\msado15.tli
文件 4252672 2011-07-23 21:06 MSPRO\Debug\MSPRO.bsc
文件 131155 2011-07-23 21:06 MSPRO\Debug\MSPRO.exe
文件 395240 2011-07-23 21:06 MSPRO\Debug\MSPRO.ilk
文件 47130 2011-07-23 14:21 MSPRO\Debug\MSPRO.obj
文件 9538816 2011-07-22 20:24 MSPRO\Debug\MSPRO.pch
文件 615424 2011-07-23 21:06 MSPRO\Debug\MSPRO.pdb
文件 2992 2011-07-22 20:09 MSPRO\Debug\MSPRO.res
文件 0 2011-07-23 14:21 MSPRO\Debug\MSPRO.sbr
文件 87042 2011-07-23 21:06 MSPRO\Debug\MSPRODlg.obj
文件 0 2011-07-23 21:06 MSPRO\Debug\MSPRODlg.sbr
文件 133544 2011-07-22 20:24 MSPRO\Debug\StdAfx.obj
文件 1767056 2011-07-22 20:24 MSPRO\Debug\StdAfx.sbr
文件 246784 2011-07-23 21:09 MSPRO\Debug\vc60.idb
文件 561152 2011-07-23 21:06 MSPRO\Debug\vc60.pdb
文件 90664 2010-11-09 22:51 MSPRO\msado15.tlh
文件 76614 2010-11-09 22:51 MSPRO\msado15.tli
文件 36252 2011-07-22 20:09 MSPRO\MSPRO.APS
文件 1613 2011-07-23 21:33 MSPRO\MSPRO.clw
文件 2940 2011-07-23 14:21 MSPRO\MSPRO.cpp
文件 4215 2011-07-22 21:41 MSPRO\MSPRO.dsp
文件 535 2011-07-22 19:51 MSPRO\MSPRO.dsw
文件 1427 2011-07-23 09:58 MSPRO\MSPRO.h
文件 140288 2011-07-23 21:33 MSPRO\MSPRO.ncb
文件 55808 2011-07-23 21:33 MSPRO\MSPRO.opt
文件 709 2011-07-23 21:06 MSPRO\MSPRO.plg
文件 6084 2011-07-22 20:09 MSPRO\MSPRO.rc
文件 8657 2011-07-23 21:06 MSPRO\MSPRODlg.cpp
............此处省略13个文件信息
相关资源
- MFC 基于对话框 菜单栏的选择对号标记
- 基于MFC的端口扫描器含源代码
- MFC邮件客户端毕业设计改进版 张鹏
- 画图软件(直线、矩形、椭圆、三角
- 梁友栋-直线裁剪算法图形学mfc
- C++ MFC 简单计算器完善+注释
- 基于MFC的俄罗斯方块游戏
- Visual Studio 2010之MFC编程
- SiamFC++.pptx
- 数据库课程设计 汽车租借信息系统
- C++学生信息管理系统源码+数据库+文档
- vc6.0下实现单击弹出对话框
- MFC的成绩柱状图,还有用处,初学者
- 基于MFC局域网聊天和文件传送程序
- MFC实现的五子棋程序,可人机对战
- VC++实现的计算器,用MFC实现界面操作
- 网络协议分析器的设计与实现
- 密码学 模逆与模幂计算与应用 MFC实现
- 人事管理系统(MFCC++实现)
- MFC图书管理系统
- MFC实现qq聊天
- LPC1768IAP+MFC上位机+bootloader+app有看不懂
- VC++6.0 MFC的学生信息管理系统
- mfc STL格式形体的读取与显示
- MFC音乐播放器
- MFC透明Edit
- MFC截图程序 完整版
- MFC电梯程序
- MFC下的数据字典字典管理系统
- AES加解密算法实现MFC
评论
共有 条评论