• 大小: 5.02MB
    文件类型: .zip
    金币: 1
    下载: 0 次
    发布日期: 2023-09-23
  • 语言: C/C++
  • 标签: C++  课程设计  

资源简介

用C++编写的MFC可视化图书馆管理系统,实现与数据库的连接!

资源截图

代码片段和文件信息

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

#include “stdafx.h“
#include “BookMessage.h“
#include “ULogin.h“
#include “MLogin.h“

#include “MainFrm.h“
#include “BookMessageDoc.h“
#include “BookMessageView.h“

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CBookMessageApp

BEGIN_MESSAGE_MAP(CBookMessageApp CWinApp)
//{{AFX_MSG_MAP(CBookMessageApp)
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)
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CBookMessageApp construction

CBookMessageApp::CBookMessageApp()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}

/////////////////////////////////////////////////////////////////////////////
// The one and only CBookMessageApp object

CBookMessageApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CBookMessageApp initialization

BOOL CBookMessageApp::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(CBookMessageDoc)
RUNTIME_CLASS(CMainframe)       // main SDI frame window
RUNTIME_CLASS(CBookMessageView));
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->UpdateW

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----
     目录           0  2012-03-02 21:18  BookMessage\
     目录           0  2011-04-06 04:32  BookMessage\ACCESS数据表\
     文件      147456  2011-04-05 21:54  BookMessage\ACCESS数据表\BOOKLIST.mdb
     文件       54692  2012-03-02 21:16  BookMessage\BookMessage.aps
     文件        5360  2012-03-02 21:18  BookMessage\BookMessage.clw
     文件        4369  2011-04-04 22:32  BookMessage\BookMessage.cpp
     文件        5426  2011-04-05 22:22  BookMessage\BookMessage.dsp
     文件         530  2011-04-04 03:05  BookMessage\BookMessage.dsw
     文件        1411  2011-04-04 02:43  BookMessage\BookMessage.h
     文件      328704  2012-03-02 21:18  BookMessage\BookMessage.ncb
     文件       53760  2012-03-02 21:18  BookMessage\BookMessage.opt
     文件         974  2012-03-02 21:17  BookMessage\BookMessage.plg
     文件       14388  2011-04-06 00:32  BookMessage\BookMessage.rc
     文件        1842  2011-04-04 02:43  BookMessage\BookMessageDoc.cpp
     文件        1530  2011-04-04 02:43  BookMessage\BookMessageDoc.h
     文件        1896  2011-04-04 16:42  BookMessage\BookMessageView.cpp
     文件        1656  2011-04-04 16:40  BookMessage\BookMessageView.h
     目录           0  2012-03-02 21:17  BookMessage\Debug\
     文件     2367562  2012-03-02 21:17  BookMessage\Debug\BookMessage.exe
     文件     2627152  2012-03-02 21:17  BookMessage\Debug\BookMessage.ilk
     文件       24012  2011-04-04 23:39  BookMessage\Debug\BookMessage.obj
     文件     6060044  2011-04-04 02:46  BookMessage\Debug\BookMessage.pch
     文件     4342784  2012-03-02 21:17  BookMessage\Debug\BookMessage.pdb
     文件       38880  2011-04-06 00:36  BookMessage\Debug\BookMessage.res
     文件       13709  2011-04-04 02:46  BookMessage\Debug\BookMessageDoc.obj
     文件       16801  2011-04-04 16:42  BookMessage\Debug\BookMessageView.obj
     文件       21711  2012-03-02 21:17  BookMessage\Debug\List.obj
     文件       22027  2011-04-05 21:49  BookMessage\Debug\MLogin.obj
     文件       29298  2011-04-05 21:47  BookMessage\Debug\MainFrm.obj
     文件       24890  2011-04-06 03:48  BookMessage\Debug\Message.obj
     文件      113944  2011-04-04 02:46  BookMessage\Debug\StdAfx.obj
............此处省略31个文件信息

评论

共有 条评论