资源简介
利用vc和SQL结合,完成学生教学管理系统,包括教师、管理员、学生、考试试卷等
代码片段和文件信息
// 1.cpp : Defines the class behaviors for the application.
//
#include “stdafx.h“
#include “1.h“
#include “1Dlg.h“
#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif
/////////////////////////////////////////////////////////////////////////////
// CMy1App
BEGIN_MESSAGE_MAP(CMy1App CWinApp)
//{{AFX_MSG_MAP(CMy1App)
// 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()
/////////////////////////////////////////////////////////////////////////////
// CMy1App construction
CMy1App::CMy1App()
{
// TODO: add construction code here
// Place all significant initialization in InitInstance
}
/////////////////////////////////////////////////////////////////////////////
// The one and only CMy1App object
CMy1App theApp;
/////////////////////////////////////////////////////////////////////////////
// CMy1App initialization
BOOL CMy1App::InitInstance()
{
AfxEnableControlContainer();
VERIFY( 1 == InitSkinMagicLib( AfxGetInstanceHandle() _T(“ReadUI“) NULLNULL ) );//初始化
VERIFY(1 == LoadSkinFromResource(NULL (LPSTR)IDR_SKIN_XPGREAN “SKINMAGIC“));//载入皮肤资源
VERIFY(1 == SetDialogSkin(“Dialog“));//设置对话框皮肤
// 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
CMy1Dlg 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;
}
int CMy1App::ExitInstance()
{
// TODO: Add your specialized code here and/or call the base class
ExitSkinMagicLib();
return CWinApp::ExitInstance();
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1441792 2010-08-21 23:01 数据库\Test.mdf
文件 3211264 2010-08-20 22:39 数据库\Test_log.ldf
文件 99080 2010-08-31 14:26 数据库\数据库 最终版本\1.aps
文件 8795 2010-08-31 14:26 数据库\数据库 最终版本\1.clw
文件 2418 2010-08-13 14:06 数据库\数据库 最终版本\1.cpp
文件 5508 2010-08-25 14:06 数据库\数据库 最终版本\1.dsp
文件 508 2010-08-13 10:05 数据库\数据库 最终版本\1.dsw
文件 1336 2010-08-13 14:05 数据库\数据库 最终版本\1.h
文件 197632 2010-08-31 14:27 数据库\数据库 最终版本\1.ncb
文件 52736 2010-08-31 14:27 数据库\数据库 最终版本\1.opt
文件 2057 2010-08-31 14:13 数据库\数据库 最终版本\1.plg
文件 16251 2010-08-31 14:26 数据库\数据库 最终版本\1.rc
文件 7639 2010-08-13 14:08 数据库\数据库 最终版本\1Dlg.cpp
文件 1815 2010-08-13 13:59 数据库\数据库 最终版本\1Dlg.h
文件 3458048 2010-08-31 14:13 数据库\数据库 最终版本\Debug\1.bsc
文件 856160 2010-08-31 14:13 数据库\数据库 最终版本\Debug\1.exe
文件 1513684 2010-08-31 14:13 数据库\数据库 最终版本\Debug\1.ilk
文件 16691 2010-08-25 14:02 数据库\数据库 最终版本\Debug\1.obj
文件 7359192 2010-08-25 14:02 数据库\数据库 最终版本\Debug\1.pch
文件 1319936 2010-08-31 14:13 数据库\数据库 最终版本\Debug\1.pdb
文件 59108 2010-08-25 13:53 数据库\数据库 最终版本\Debug\1.res
文件 0 2010-08-25 14:02 数据库\数据库 最终版本\Debug\1.sbr
文件 59385 2010-08-25 14:02 数据库\数据库 最终版本\Debug\1Dlg.obj
文件 0 2010-08-25 14:02 数据库\数据库 最终版本\Debug\1Dlg.sbr
文件 17530 2010-08-25 14:02 数据库\数据库 最终版本\Debug\KeyChange.obj
文件 0 2010-08-25 14:02 数据库\数据库 最终版本\Debug\KeyChange.sbr
文件 10003 2010-08-13 08:17 数据库\数据库 最终版本\Debug\Maneger.obj
文件 10024 2010-08-13 10:05 数据库\数据库 最终版本\Debug\ManegEr1.obj
文件 34562 2010-08-25 14:02 数据库\数据库 最终版本\Debug\ManegerP.obj
文件 0 2010-08-25 14:02 数据库\数据库 最终版本\Debug\ManegerP.sbr
............此处省略59个文件信息
评论
共有 条评论