• 大小: 1.85MB
    文件类型: .rar
    金币: 2
    下载: 1 次
    发布日期: 2023-08-16
  • 语言: C/C++
  • 标签:

资源简介

利用MFC编写一个简单的带界面的数据库,要求至少能够简单地实现对数据的查找、修改、添加和删除功能。 ---------------------------------------------- 仅供参考

资源截图

代码片段和文件信息

// Database.cpp : Defines the class behaviors for the application.
//

#include “stdafx.h“
#include “Database.h“
#include “DatabaseDlg.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)
// 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()

/////////////////////////////////////////////////////////////////////////////
// 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

CDatabaseDlg 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;
}

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      36888  2010-09-01 21:06  Database\Database.aps

     文件       2211  2010-09-01 22:35  Database\Database.clw

     文件       2091  2010-08-20 15:23  Database\Database.cpp

     文件       4318  2010-08-31 16:35  Database\Database.dsp

     文件        522  2010-08-20 15:23  Database\Database.dsw

     文件       1346  2010-08-20 15:23  Database\Database.h

     文件      50176  2010-09-01 22:35  Database\Database.ncb

     文件      54784  2010-09-01 22:35  Database\Database.opt

     文件        558  2010-09-01 22:35  Database\Database.plg

     文件       7077  2010-09-01 21:06  Database\Database.rc

     文件      10986  2010-09-01 22:35  Database\DatabaseDlg.cpp

     文件       1680  2010-09-01 21:30  Database\DatabaseDlg.h

     文件     114759  2010-09-01 22:35  Database\Debug\Database.exe

     文件     323096  2010-09-01 22:35  Database\Debug\Database.ilk

     文件      14837  2010-09-01 21:48  Database\Debug\Database.obj

     文件    5633608  2010-08-20 16:27  Database\Debug\Database.pch

     文件     427008  2010-09-01 22:35  Database\Debug\Database.pdb

     文件       3456  2010-09-01 21:06  Database\Debug\Database.res

     文件      47448  2010-09-01 22:35  Database\Debug\DatabaseDlg.obj

     文件     105859  2010-08-20 16:27  Database\Debug\StdAfx.obj

     文件       8710  2010-09-01 22:28  Database\Debug\Student.obj

     文件       6134  2010-08-30 19:54  Database\Debug\Stu_Database.obj

     文件     214016  2010-09-01 22:35  Database\Debug\vc60.idb

     文件     372736  2010-09-01 22:35  Database\Debug\vc60.pdb

     文件       1388  2010-08-20 21:49  Database\old file\Student.cpp

     文件        939  2010-08-20 21:49  Database\old file\Student.h

     文件       1115  2010-08-20 22:00  Database\old file\Stu_Database.cpp

     文件        834  2010-08-20 21:32  Database\old file\Stu_Database.h

     文件       3615  2010-08-20 15:23  Database\ReadMe.txt

     文件       1078  2010-08-20 15:23  Database\res\Database.ico

............此处省略13个文件信息

评论

共有 条评论