stutran.h

来自「教学管理系统实现了高校教务、教学和学生三大方面的自动化以及交互式管理」· C头文件 代码 · 共 76 行

H
76
字号
#if !defined(AFX_STUTRAN_H__3722AFFF_F5FD_4ACF_841A_67BDFC7822BC__INCLUDED_)
#define AFX_STUTRAN_H__3722AFFF_F5FD_4ACF_841A_67BDFC7822BC__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// StuTran.h : header file
//
#include "Students.h"
#include "StuCourse.h"
#include "Course.h"
#include "StuTranLog.h"
#include "BtnST.h"
/////////////////////////////////////////////////////////////////////////////
// CStuTran dialog

class CStuTran : public CDialog
{
// Construction
public:
	CStuTran(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CStuTran)
	enum { IDD = IDD_STUTRAN_DIALOG };
	CEdit	m_ctlToInstitute;
	CEdit	m_ctlName;
	CEdit	m_ctlNum;
	CButtonST	m_btnOk;
	CButtonST	m_btnClear;
	CListCtrl	m_logList;
	CButtonST	m_btnAuto;
	CString	m_fromGrade;
	CString	m_fromTinstitute;
	CString	m_fromSpecialty;
	CString	m_name;
	CString	m_num;
	CString	m_toGrade;
	CString	m_toInstitute;
	CString	m_tospecialty;
	CString	m_tranTime;
	//}}AFX_DATA


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

// Implementation
	CStudents *m_pStu;
	CCourse *m_pCourse;
	CStuCourse *m_pStuCourse;
	CStuTranLog *m_pTranLog;
protected:

	// Generated message map functions
	//{{AFX_MSG(CStuTran)
	virtual BOOL OnInitDialog();
	afx_msg void OnBtnok();
	afx_msg void OnBtnclear();
	afx_msg void OnBtnauto();
	afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
	void setTranLog();
};

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

#endif // !defined(AFX_STUTRAN_H__3722AFFF_F5FD_4ACF_841A_67BDFC7822BC__INCLUDED_)

⌨️ 快捷键说明

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