informationissueform.h

来自「关于客户关系管理系统的源码」· C头文件 代码 · 共 78 行

H
78
字号
#if !defined(AFX_INFORMATIONISSUEFORM_H__B9C53F82_9A6E_4347_9C77_DD32815D155A__INCLUDED_)
#define AFX_INFORMATIONISSUEFORM_H__B9C53F82_9A6E_4347_9C77_DD32815D155A__INCLUDED_

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

/////////////////////////////////////////////////////////////////////////////
// CInformationIssueForm dialog

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

// Dialog Data
	//{{AFX_DATA(CInformationIssueForm)
	enum { IDD = IDD_INFORMATIONISSUEFORM_DIALOG };
	CComboBox	m_staffNameCombo;
	CComboBox	m_departmentCombo;
	CListCtrl	m_list;
	COleDateTime	m_issueDate;
	CString	m_department;
	CString	m_staffName;
	CString	m_subject;
	CString	m_content;
	CString	m_informationIssueID;
	CWnd*	tx_issueDate;
	CWnd*	tx_department;
	CWnd*	tx_staffName;
	CWnd*	tx_subject;
	CWnd*	tx_content;
	CWnd*	tx_informationIssueID;
	CWnd*	bt_add;
	CWnd*	bt_delete;
	CWnd*	bt_modify;
	CWnd*	bt_save;
	CWnd*	bt_cancelation;
	int flag;
	int is_search;
	//}}AFX_DATA


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

	public:
		void Refresh();

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CInformationIssueForm)
	virtual BOOL OnInitDialog();
	afx_msg void OnAdd();
	afx_msg void OnDelete();
	afx_msg void OnModify();
	afx_msg void OnSave();
	afx_msg void OnCancelation();
	afx_msg void OnExit();
	afx_msg void OnClickList1(NMHDR* pNMHDR, LRESULT* pResult);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_INFORMATIONISSUEFORM_H__B9C53F82_9A6E_4347_9C77_DD32815D155A__INCLUDED_)

⌨️ 快捷键说明

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