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

📄 pagevocationset.h

📁 人事管理系统
💻 H
字号:
#if !defined(AFX_PAGEVOCATIONSET_H__A74F41E8_A8C0_49EE_91CB_2D785D8006CF__INCLUDED_)
#define AFX_PAGEVOCATIONSET_H__A74F41E8_A8C0_49EE_91CB_2D785D8006CF__INCLUDED_

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

#include "ResizablePage.h"

/////////////////////////////////////////////////////////////////////////////
// CPageVocationSet dialog
struct Vocation{
	long id;
	COleDateTime date;
	BOOL isND;
	CString name;
};

class CPageVocationSet : public CResizablePage
{
	DECLARE_DYNCREATE(CPageVocationSet)

// Construction
public:
	CPageVocationSet();
	~CPageVocationSet();

public:
	void FillCheckList();

protected:
	int m_nOldCount;
	int m_nNewCount;
	CArray <Vocation, Vocation> vocList;
	CArray <Vocation, Vocation> delList;

// Dialog Data
	//{{AFX_DATA(CPageVocationSet)
	enum { IDD = IDD_DIALOG_VOCATION_SET };
	BOOL	m_bIsND;
	COleDateTime	m_tVocDate;
	CString	m_strVocName;
	long	m_nDays;
	//}}AFX_DATA
	CCheckListBox	m_ctrlVocCheckList;


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

// Implementation
protected:
	// Generated message map functions
	//{{AFX_MSG(CPageVocationSet)
	virtual BOOL OnInitDialog();
	afx_msg void OnButtonAddvocation();
	afx_msg void OnButtonDelvocation();
	afx_msg void OnButtonOk();
	afx_msg void OnButtonCancel();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()

};

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

#endif // !defined(AFX_PAGEVOCATIONSET_H__A74F41E8_A8C0_49EE_91CB_2D785D8006CF__INCLUDED_)

⌨️ 快捷键说明

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