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

📄 student.cpp

📁 一个驾校学员的数据库管理软件。采用ACCESS数据库。非常方便。
💻 CPP
字号:
// Student.cpp: implementation of the CStudent class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "AutoStuMis.h"
#include "Student.h"
#include "Item.h"

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

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////

CStudent::CStudent()
{
	m_F_Sex = _T("");
	m_F_SN = _T("");
	m_F_Address = _T("");
	m_F_Tel = _T("");
	m_F_Date = 0;
	m_F_AutoNo = _T("");
	m_F_TypeID = 0;

	m_tmUpAuto = 0;
	m_tmExamField = 0;
	m_tmExamRoad = 0;
	m_nExamTypeID = 0;
	m_tmEnd = 0;

}

CStudent::~CStudent()
{

}

⌨️ 快捷键说明

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