资源简介
MFC连接用ADO技术连接Access,老外的代码,在网上下的,你们自己品味一下吧
代码片段和文件信息
// ADOTest.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “ADOTest.h“
#include “ADOTestDlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CADOTestApp
BEGIN_MESSAGE_MAP(CADOTestApp CWinApp)
//{{AFX_MSG_MAP(CADOTestApp)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CADOTestApp construction
CADOTestApp::CADOTestApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CADOTestApp object
CADOTestApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CADOTestApp initialization
BOOL CADOTestApp::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
CADOTestDlg 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;
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 2077 2001-03-27 13:17 ADOTest\ADOTest.cpp
文件 4442 2001-05-28 10:51 ADOTest\ADOTest.dsp
文件 539 2001-03-27 13:17 ADOTest\ADOTest.dsw
文件 1335 2001-03-27 13:17 ADOTest\ADOTest.h
文件 6790 2001-05-28 10:02 ADOTest\ADOTest.rc
文件 11168 2001-05-31 10:51 ADOTest\ADOTestDlg.cpp
文件 1473 2001-05-31 10:51 ADOTest\ADOTestDlg.h
文件 1078 2001-03-27 13:17 ADOTest\res\ADOTest.ico
文件 399 2001-03-27 13:17 ADOTest\res\ADOTest.rc2
文件 1005 2001-05-28 10:02 ADOTest\resource.h
文件 209 2001-03-27 13:17 ADOTest\StdAfx.cpp
文件 1126 2001-03-27 13:56 ADOTest\StdAfx.h
文件 1005 2001-05-21 09:59 ADOTest\StoredProcDlg.cpp
文件 1254 2001-05-21 09:59 ADOTest\StoredProcDlg.h
文件 1071 2001-05-28 10:20 ADOTest\UpdateDlg.cpp
文件 1241 2001-05-28 10:20 ADOTest\UpdateDlg.h
文件 159744 2001-05-31 11:34 ADOTestDB.mdb
目录 0 2001-06-11 10:21 ADOTest\res
目录 0 2001-06-11 10:21 ADOTest
----------- --------- ---------- ----- ----
195956 19
- 上一篇:学生成绩管理系统C语言
- 下一篇:基于51单片机的家庭安全防火防盗系统设计
相关资源
- mfc ActiveX 结构体数组的传递
- MFC鼠标位置提示框
- MFC带百分比的进度条
- MFC 中点切割算法实现线段裁剪
- MFC socket编程MyQQ
- 基于MFC实现的FTP断点续传客户端
- MFC日志类
- MFC单文档画图(直线矩形有注释)
- 简单的MFC串口通讯 源代码
- MFC学生简单信息管理程序设计文档
- 语音识别MFCC特征提取matlab代码
- MFC单文档心电图模拟程序vc6.0
- VS2010使用MFC编写闹钟和定时关机程序
- MFC 贪吃蛇
- SDNU 面向对象程序设计及C++ MFC 期中作
- 远程文件--select模式
- MFC日志写入与读取
- Windows MFC排序演示过程
- c++/MFC CSocket仿QQ聊天软件,实现1对1聊
- C++PCM音频格式录音双缓存MFC版本
- mfc 实现图片的移动 火箭移动效果
- MFC中如何使用子控件向父控件发送自
- MFC基于TCP/IP协议的聊天室源代码 (继
- mfc高通滤波器
- MFC对EXCEL的操作:修改单元格格式,背
- MFC的一个很强大的LIstCtrl类很漂亮,类
- MFCC参数提取的matlab实现
- 基于udp的P2P聊天工具MFC实现
- 基于MFC的连接数据库的书店管理系统
- VS2013 MFC ODBC连接SQL SERVER数据库编程完
评论
共有 条评论