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

📄 doctorstudent.cpp

📁 使用vc++的mfc编写的简单学生管理系统源码
💻 CPP
字号:
// DoctorStudent.cpp: implementation of the CDoctorStudent class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "StudentMIS.h"
#include "DoctorStudent.h"

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

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

CDoctorStudent::CDoctorStudent()
{

}

CDoctorStudent::~CDoctorStudent()
{

}

void CDoctorStudent::Display(CListCtrl* pListCtrl,int nImage)
{
	CMasterStudent::Display(pListCtrl,nImage);
	
	CString m_strPaper;
	m_strPaper.Format("%d",m_nPaper);
	pListCtrl->SetItemText(0,5,m_strPaper);
}

CDoctorStudent::CDoctorStudent(CString strName,CString strID,int nAge,CString strDepartment,CString strLab,int nPaper)
:CMasterStudent(strName, strID, nAge, strDepartment,strLab), m_nPaper(nPaper)
{
	
}

⌨️ 快捷键说明

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