• 大小: 3.5MB
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2023-10-15
  • 语言: C/C++
  • 标签: 毕业设计  

资源简介

由c++写成,附带设计报告,功能不是很全

资源截图

代码片段和文件信息

// ChildFrm.cpp : implementation of the CChildframe class
//

#include “stdafx.h“
#include “xscjglxt.h“

#include “ChildFrm.h“

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

/////////////////////////////////////////////////////////////////////////////
// CChildframe

IMPLEMENT_DYNCREATE(CChildframe CMDIChildWnd)

BEGIN_MESSAGE_MAP(CChildframe CMDIChildWnd)
//{{AFX_MSG_MAP(CChildframe)
// NOTE - the ClassWizard will add and remove mapping macros here.
//    DO NOT EDIT what you see in these blocks of generated code !
ON_COMMAND(ID_FILE_CLOSE OnFileClose)
ON_WM_SETFOCUS()
ON_WM_CREATE()
//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CChildframe construction/destruction

CChildframe::CChildframe()
{
// TODO: add member initialization code here

}

CChildframe::~CChildframe()
{
}

BOOL CChildframe::PreCreateWindow(CREATESTRUCT& cs)
{
// TODO: Modify the Window class or styles here by modifying
//  the CREATESTRUCT cs

if( !CMDIChildWnd::PreCreateWindow(cs) )
return FALSE;

cs.dwExstyle &= ~WS_EX_CLIENTEDGE;
cs.lpszClass = AfxRegisterWndClass(0);

return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CChildframe diagnostics

#ifdef _DEBUG
void CChildframe::AssertValid() const
{
CMDIChildWnd::AssertValid();
}

void CChildframe::Dump(CDumpContext& dc) const
{
CMDIChildWnd::Dump(dc);
}

#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CChildframe message handlers
void CChildframe::OnFileClose() 
{
// To close the frame just send a WM_CLOSE which is the equivalent
// choosing close from the system menu.

SendMessage(WM_CLOSE);
}

int CChildframe::OnCreate(LPCREATESTRUCT lpCreateStruct) 
{
if (CMDIChildWnd::OnCreate(lpCreateStruct) == -1)
return -1;

// create a view to occupy the client area of the frame
if (!m_wndView.Create(NULL NULL AFX_WS_DEFAULT_VIEW 
CRect(0 0 0 0) this AFX_IDW_PANE_FIRST NULL))
{
TRACE0(“Failed to create view window\n“);
return -1;
}

return 0;
}

void CChildframe::OnSetFocus(CWnd* pOldWnd) 
{
CMDIChildWnd::OnSetFocus(pOldWnd);

m_wndView.SetFocus();
}

BOOL CChildframe::OnCmdMsg(UINT nID int nCode void* pExtra AFX_CMDHANDLERINFO* pHandlerInfo) 
{
// let the view have first crack at the command
if (m_wndView.OnCmdMsg(nID nCode pExtra pHandlerInfo))
return TRUE;

// otherwise do default handling
return CMDIChildWnd::OnCmdMsg(nID nCode pExtra pHandlerInfo);
}


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

     文件      41472  2012-05-08 14:37  报告\开题报告.doc

     文件      27136  2012-05-08 14:38  报告\摘要.doc

     文件      20992  2012-05-08 14:35  报告\毕业论文封面.doc

     文件     708096  2012-05-08 14:37  报告\毕业论文正文.doc

     文件        827  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\default.mda

     文件        120  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\DATA.TAG

     文件       3513  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\data1.cab

     文件       4557  1997-05-30 11:31  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\lang.dat

     文件        353  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\layout.bin

     文件        417  1997-05-06 14:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\os.dat

     文件      82278  1997-04-16 01:46  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\setup.bmp

     文件      59904  1997-11-19 16:09  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\SETUP.EXE

     文件         73  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\SETUP.INI

     文件      57658  2010-04-30 13:14  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\setup.ins

     文件         49  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\setup.lid

     文件     258122  2010-04-30 12:55  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\xscjglxt.exe

     文件     300178  1997-11-19 16:05  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\_INST32I.EX_

     文件       8192  1997-11-19 16:05  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\_ISDEL.EXE

     文件      11264  1997-11-19 16:08  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\_setup.dll

     文件     191177  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\_sys1.cab

     文件      51032  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Disk Images\disk1\_user1.cab

     文件        457  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Log Files\4-30-2010 1.15.10PM.log

     文件       1910  2010-04-30 13:15  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\Report Files\4-30-2010 1.15.10PM.rpt

     文件         56  2010-04-30 13:45  学生成绩管理系统(C++)\安装程序\学生成绩管理系统\说明.txt

     文件    1179648  2010-04-30 13:22  学生成绩管理系统(C++)\数据库\cjgl_Data.MDF

     文件    1048576  2010-04-30 13:22  学生成绩管理系统(C++)\数据库\cjgl_Log.LDF

     文件       2720  2010-03-27 13:25  学生成绩管理系统(C++)\源程序\xscjglxt\ChildFrm.cpp

     文件       1720  2010-03-27 13:25  学生成绩管理系统(C++)\源程序\xscjglxt\ChildFrm.h

     文件       1168  2010-03-27 13:25  学生成绩管理系统(C++)\源程序\xscjglxt\ChildView.cpp

     文件       1267  2010-03-27 13:25  学生成绩管理系统(C++)\源程序\xscjglxt\ChildView.h

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

评论

共有 条评论