chargeedidlg.h

来自「本学期的一个小项目学校收费管理系统」· C头文件 代码 · 共 80 行

H
80
字号
#if !defined(AFX_CHARGEEDIDLG_H__65B862BC_0F08_462E_8CF2_DA44B19E4E33__INCLUDED_)
#define AFX_CHARGEEDIDLG_H__65B862BC_0F08_462E_8CF2_DA44B19E4E33__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ChargeEdiDlg.h : header file
//

#include "StuCharge.h"

/////////////////////////////////////////////////////////////////////////////
// CChargeEdiDlg dialog

class CChargeEdiDlg : public CDialog
{
public:
	CString cId;		// 标识
	CString cStuId;			// 学生编号
	CString cSpeId;			// 专业编号
	CStuCharge sch;		// 学生收费对象
// Construction
public:
	CChargeEdiDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CChargeEdiDlg)
	enum { IDD = IDD_CHARGE_EDIT_DIALOG };
	double	m_BicycleFee;
	double	m_BookFee;
	double	m_cur;
	CString	m_dep;
	double	m_DormFee;
	double	m_FileFee;
	double	m_incidental;
	double	m_insurance;
	double	m_lack;
	double	m_MacTimeFee;
	CString	m_memo;
	CString	m_name;
	double	m_pre;
	CString	m_speciality;
	double	m_tuition;
	double	m_total;
	int		m_Year;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CChargeEdiDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnSelButton();
	afx_msg void OnChangeTuitionEdit();
	afx_msg void OnChangeIncidentalEdit();
	afx_msg void OnChangeMacTimeFeeEdit();
	afx_msg void OnChangeInsuranceEdit();
	afx_msg void OnChangeDormFeeEdit();
	afx_msg void OnChangeBicycleFeeEdit();
	afx_msg void OnChangeBookFeeEdit();
	afx_msg void OnChangeFileFeeEdit();
	virtual void OnOK();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_CHARGEEDIDLG_H__65B862BC_0F08_462E_8CF2_DA44B19E4E33__INCLUDED_)

⌨️ 快捷键说明

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