资源简介
vc6操作数据库,从数据库到listbox读写数据。自己的测试代码,保证能用。
代码片段和文件信息
// database.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “database.h“
#include “MainFrm.h“
#include “databaseDoc.h“
#include “databaseView.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CDatabaseApp
BEGIN_MESSAGE_MAP(CDatabaseApp CWinApp)
//{{AFX_MSG_MAP(CDatabaseApp)
ON_COMMAND(ID_APP_ABOUT OnAppAbout)
// NOTE - the ClassWizard will add and remove mapping macros here.
// DO NOT EDIT what you see in these blocks of generated code!
//}}AFX_MSG_MAP
// Standard file based document commands
ON_COMMAND(ID_FILE_NEW CWinApp::OnFileNew)
ON_COMMAND(ID_FILE_OPEN CWinApp::OnFileOpen)
// Standard print setup command
ON_COMMAND(ID_FILE_PRINT_SETUP CWinApp::OnFilePrintSetup)
END_MESSAGE_MAP()
/////////////////////////////////////////////////////////////////////////////
// CDatabaseApp construction
CDatabaseApp::CDatabaseApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CDatabaseApp object
CDatabaseApp theApp;
/////////////////////////////////////////////////////////////////////////////
// CDatabaseApp initialization
BOOL CDatabaseApp::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
// Change the registry key under which our settings are stored.
// TODO: You should modify this string to be something appropriate
// such as the name of your company or organization.
SetRegistryKey(_T(“Local AppWizard-Generated Applications“));
LoadStdProfileSettings(); // Load standard INI file options (including MRU)
// Register the application‘s document templates. Document templates
// serve as the connection between documents frame windows and views.
CSingleDocTemplate* pDocTemplate;
pDocTemplate = new CSingleDocTemplate(
IDR_MAINframe
RUNTIME_CLASS(CDatabaseDoc)
RUNTIME_CLASS(CMainframe) // main SDI frame window
RUNTIME_CLASS(CDatabaseView));
AddDocTemplate(pDocTemplate);
// Parse command line for standard shell commands DDE file open
CCommandLineInfo cmdInfo;
ParseCommandLine(cmdInfo);
// Dispatch commands specified on the command line
if (!ProcessShellCommand(cmdInfo))
return FALSE;
// The one and only window has been initialized so show and update it.
m_pMainWnd->ShowWindow(SW_SHOW);
m_pMainWnd->Up
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 45396 2011-12-11 09:05 databa
文件 2726 2011-12-11 09:59 databa
文件 4245 2011-12-08 17:54 databa
文件 4597 2011-12-08 17:54 databa
文件 541 2011-12-08 18:04 databa
文件 1378 2011-12-08 17:54 databa
文件 181248 2011-12-11 09:59 databa
文件 51712 2011-12-11 09:59 databa
文件 250 2011-12-11 09:58 databa
文件 12444 2011-12-11 09:05 databa
文件 1782 2011-12-08 17:54 databa
文件 1497 2011-12-08 17:54 databa
文件 8927 2011-12-11 09:58 databa
文件 2199 2011-12-10 17:52 databa
文件 4236288 2011-12-10 12:11 databa
文件 147556 2011-12-11 09:58 databa
文件 424484 2011-12-11 09:58 databa
文件 23308 2011-12-10 18:02 databa
文件 9538816 2011-12-10 12:01 databa
文件 754688 2011-12-11 09:58 databa
文件 7656 2011-12-11 09:05 databa
文件 0 2011-12-10 12:01 databa
文件 15140 2011-12-10 12:01 databa
文件 0 2011-12-10 12:01 databa
文件 110888 2011-12-11 09:58 databa
文件 0 2011-12-10 12:11 databa
文件 20241 2011-12-10 12:01 databa
文件 0 2011-12-10 12:01 databa
文件 90739 2006-12-26 21:07 databa
文件 76674 2006-12-26 21:07 databa
............此处省略23个文件信息
- 上一篇:《严蔚敏:数据结构题集(C语言版)》PDF
- 下一篇:八数码问题的八种实现方法
相关资源
- 经典 MFC 界面组件库
- 简单浏览器设计,MFC实现
- MFC多线程编程实例120658
- C++ MFC实现的字符点阵转换工具
- 用MFC做的图书管理系统
- c++ mfc 校园导航 最短路径计算
- 简单LISP算术表达式计算器
- MFC做的画板MFC做的画板
- MFC 聊天室 高级
- MFC 浏览器的实现
- MFC UDP 聊天
- MFC 网络时钟
- MFC数字图像处理
- MFC_学生信息管理系统
- C++基于MFC与ACCESS数据库的成绩管理系
- MFC些的串口调试助手源码
- C++MFC界面美化源代码
- MFC资料两本详细讲解MFC的资料,对M
- 计算机图形学 图形变换 C++ MFC
- VS2010之MFC串口通信的编写教程
- mfc实现点击一个窗口弹出另一个窗口
- 一个会朗读文本的MFC应用程序
- MFC实现7种排序算法、比较时间复杂度
- MFC停车场车辆信息管理系统附数据库
- 温度数据采集系统程序上位机程序+
- 吕鑫MFC教学视频中的源代码
- 在vc下开发的canny边缘检测 MFC
- MFC 动态链接库的使用
- MFC做的用幻灯片模式播放图片,还有
- VC++MFC抓包程序源码
评论
共有 条评论