empolyee.h

来自「一个简单的公司员工管理系统」· C头文件 代码 · 共 56 行

H
56
字号
#if !defined(AFX_EMPOLYEE_H__554167A1_7251_4372_B5F8_8100CCD68A73__INCLUDED_)
#define AFX_EMPOLYEE_H__554167A1_7251_4372_B5F8_8100CCD68A73__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CEmpolyee dialog

class CEmpolyee : public CDialog
{
// Construction
public:
	CEmpolyee(CWnd* pParent = NULL);   // standard constructor
    CDatabase m_db;
// Dialog Data
	//{{AFX_DATA(CEmpolyee)
	enum { IDD = IDD_EMPLOYEE };
	CString	m_age;
	CString	m_constract;
	CString	m_duty;
	CString	m_name;
	CString	m_eno;
	CString	m_other;
	CString	m_sector;
	CString	m_sex;
	//}}AFX_DATA


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

// Implementation
protected:
     virtual BOOL OnInitDialog();
	// Generated message map functions
	//{{AFX_MSG(CEmpolyee)
	afx_msg void OnChangeEno();
	afx_msg void OnChangeEconstract();
	afx_msg void OnNOTECTRL();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_EMPOLYEE_H__554167A1_7251_4372_B5F8_8100CCD68A73__INCLUDED_)

⌨️ 快捷键说明

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