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

📄 studentmisdlg.h

📁 使用vc++的mfc编写的简单学生管理系统源码
💻 H
字号:
// StudentMISDlg.h : header file
//

#if !defined(AFX_STUDENTMISDLG_H__2A2A6B9E_E98D_41A7_ACC7_51A7425B3EA8__INCLUDED_)
#define AFX_STUDENTMISDLG_H__2A2A6B9E_E98D_41A7_ACC7_51A7425B3EA8__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

/////////////////////////////////////////////////////////////////////////////
// CStudentMISDlg dialog
#include "student.h"
#include "MasterStudent.h"
#include "DoctorStudent.h"
#include <afxtempl.h>
#include "fstream.h"

class CStudentMISDlg : public CDialog
{
// Construction
public:
	void RemoveStudent(CString strID);
	CStudentMISDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CStudentMISDlg)
	enum { IDD = IDD_STUDENTMIS_DIALOG };
	CComboBox	m_type;
	CListCtrl	m_list;
	//}}AFX_DATA

	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CStudentMISDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CStudentMISDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSysCommand(UINT nID, LPARAM lParam);
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnAdd();
	afx_msg void OnSelchangeComtype();
	afx_msg void OnEdit();
	afx_msg void OnDel();
	afx_msg void OnSave();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	CArray<CDoctorStudent,CDoctorStudent&> Darray;
	CArray<CMasterStudent,CMasterStudent&> Marray;
	CArray<CStudent,CStudent&> Barray;
	CImageList *m_pImageList;
	
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_STUDENTMISDLG_H__2A2A6B9E_E98D_41A7_ACC7_51A7425B3EA8__INCLUDED_)

⌨️ 快捷键说明

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