staffsaleplan.h

来自「基于VC+SQL SERVER环境开发的企业商品销售系统.完整的数据库和原代码」· C头文件 代码 · 共 88 行

H
88
字号
#if !defined(AFX_STAFFSALEPLAN_H__D49B6B23_1CD2_413C_AC4D_1FF91D04228F__INCLUDED_)
#define AFX_STAFFSALEPLAN_H__D49B6B23_1CD2_413C_AC4D_1FF91D04228F__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CStaffSalePlan dialog

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

// Dialog Data
	//{{AFX_DATA(CStaffSalePlan)
	enum { IDD = IDD_STAFFSALEPLAN_DIALOG };
	CListCtrl	m_staffSalePlanList;
	CString	m_planID;
	CString	m_planYear;
	COleDateTime	m_formDate;
	CString	m_remark;

	int flag;

	CWnd* bt_firstPage;
	CWnd* bt_prevPage;
	CWnd* bt_nextPage;
	CWnd* bt_lastPage;
	CWnd* bt_add;
	CWnd* bt_save;
	CWnd* bt_modify;
	CWnd* bt_delete;
	CWnd* bt_addLine;
	CWnd* bt_deleteLine;
	CWnd* bt_checked;
	CWnd* bt_cancellation;

	CWnd*	tx_planID;
	CWnd*	tx_formDate;
	CWnd*	tx_planYear;
	CWnd*	tx_remark;


	_RecordsetPtr m_pSalePlanRecordset;
	//}}AFX_DATA


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

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CStaffSalePlan)
	afx_msg void OnFirstPage();
	afx_msg void OnPrevPage();
	afx_msg void OnNextPage();
	afx_msg void OnLastPage();
	afx_msg void OnNew();
	afx_msg void OnModify();
	afx_msg void OnDelete();
	afx_msg void OnAddLine();
	afx_msg void OnDeleteLine();
	afx_msg void OnSave();
	afx_msg void OnExit();
	afx_msg void OnClickStaffSalePlanList(NMHDR* pNMHDR, LRESULT* pResult);
	virtual BOOL OnInitDialog();
	afx_msg void OnAuditing();
	afx_msg void OnCancellation();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_STAFFSALEPLAN_H__D49B6B23_1CD2_413C_AC4D_1FF91D04228F__INCLUDED_)

⌨️ 快捷键说明

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