⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 student.cpp

📁 一个简单的学生成绩管理系统,在VC和SQL 2000下测试成功,(里面有数据库备份文件,直接还原即可,还原数据库后可以在USERS表里找到帐号和密码.
💻 CPP
字号:
// student.cpp : Defines the class behaviors for the application.
//

#include "stdafx.h"
#include "student.h"
#include "studentDlg.h"

#include "SkinLoadLib.h"

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

/////////////////////////////////////////////////////////////////////////////
// CStudentApp

BEGIN_MESSAGE_MAP(CStudentApp, CWinApp)
	//{{AFX_MSG_MAP(CStudentApp)
		// 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()

/////////////////////////////////////////////////////////////////////////////
// CStudentApp construction

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

/////////////////////////////////////////////////////////////////////////////
// The one and only CStudentApp object

CStudentApp theApp;

/////////////////////////////////////////////////////////////////////////////
// CStudentApp initialization

BOOL CStudentApp::InitInstance()
{
	AfxEnableControlContainer();
	//初始化SkinLoad,加载皮肤文件
	InitSkinLoad(GetCurrentThreadId());
	if(!LoadSkin("xp_silver.skin"))
	{
		AfxMessageBox("加载皮肤文件失败!\n请检查文件xp_silver.skin是否存在");
	}

	CStudentDlg dlg;
	m_pMainWnd = &dlg;
	dlg.DoModal();
	return FALSE;
}

int CStudentApp::ExitInstance() 
{
	// TODO: Add your specialized code here and/or call the base class
	ExitSkinLoad();
	return CWinApp::ExitInstance();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -