12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- #if !defined(AFX_SHOWHISSALARY_H__A0BDFF02_02CA_4936_BAA5_FEA1138DAE34__INCLUDED_)
- #define AFX_SHOWHISSALARY_H__A0BDFF02_02CA_4936_BAA5_FEA1138DAE34__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif
- class ShowHisSalary : public CDialog
- {
- BOOL m_bInit;
- CArray<CStringArray, CStringArray>m_List1array;
- public:
- void GetData();
- void Clear(int selpos);
- void FillGrid();
- ShowHisSalary(CWnd* pParent = NULL);
-
- enum { IDD = IDD_DLGShowHisSalary };
- CSpinButtonCtrl m_spinmonth;
- CSpinButtonCtrl m_spinyear;
- CSortListCtrl2 m_List1;
- CString m_filter;
- UINT m_year;
- UINT m_month;
-
-
-
- protected:
- virtual void DoDataExchange(CDataExchange* pDX);
-
- protected:
-
-
- virtual BOOL OnInitDialog();
- afx_msg void OnButton1();
- afx_msg void OnChangeEDITyear();
- afx_msg void OnChangeEDITmonth();
- afx_msg void OnBUTclear1();
- afx_msg void OnBUTclear2();
- afx_msg void OnBUTclear3();
- afx_msg void OnBUTclear4();
- afx_msg void OnBUTclear5();
-
- DECLARE_MESSAGE_MAP()
- };
- #endif
|