ClientForm.h 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. #if !defined(AFX_CClientForm_H__ACD9E9EA_B724_4711_9C6F_DE3ADA090E2E__INCLUDED_)
  2. #define AFX_CClientForm_H__ACD9E9EA_B724_4711_9C6F_DE3ADA090E2E__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // CClientForm.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CClientForm form view
  10. #ifndef __AFXEXT_H__
  11. #include <afxext.h>
  12. #endif
  13. class CClientForm : public CFormView
  14. {
  15. int m_oldmode;
  16. BOOL m_bInit;
  17. CArray<CStringArray, CStringArray>m_List1array;
  18. protected:
  19. CClientForm(); // protected constructor used by dynamic creation
  20. DECLARE_DYNCREATE(CClientForm)
  21. // Form Data
  22. public:
  23. //{{AFX_DATA(CClientForm)
  24. enum { IDD = IDD_DLGClientForm };
  25. CSpinButtonCtrl m_spin1;
  26. CComboBox m_combo1;
  27. CSortListCtrl2 m_List1;
  28. CStatic m_static1;
  29. CString m_filter;
  30. UINT m_days;
  31. int m_radio;
  32. //}}AFX_DATA
  33. // Attributes
  34. public:
  35. // Operations
  36. public:
  37. void FillGrid(int mode=0);
  38. // Overrides
  39. // ClassWizard generated virtual function overrides
  40. //{{AFX_VIRTUAL(CClientForm)
  41. public:
  42. virtual void OnInitialUpdate();
  43. virtual BOOL PreTranslateMessage(MSG* pMsg);
  44. protected:
  45. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  46. //}}AFX_VIRTUAL
  47. // Implementation
  48. protected:
  49. virtual ~CClientForm();
  50. #ifdef _DEBUG
  51. virtual void AssertValid() const;
  52. virtual void Dump(CDumpContext& dc) const;
  53. #endif
  54. // Generated message map functions
  55. //{{AFX_MSG(CClientForm)
  56. afx_msg void OnBUTclose();
  57. afx_msg void OnButton1();
  58. afx_msg void OnDblclkList2(NMHDR* pNMHDR, LRESULT* pResult);
  59. afx_msg void OnSelchangeCombo1();
  60. afx_msg void OnTimer(UINT nIDEvent);
  61. afx_msg void OnBUTmodify();
  62. afx_msg void OnButton2();
  63. afx_msg void OnButton3();
  64. afx_msg void OnRadio1();
  65. afx_msg void OnRadio2();
  66. afx_msg void OnRadio9();
  67. afx_msg void OnChangeEdit1();
  68. //}}AFX_MSG
  69. DECLARE_MESSAGE_MAP()
  70. };
  71. /////////////////////////////////////////////////////////////////////////////
  72. //{{AFX_INSERT_LOCATION}}
  73. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  74. #endif // !defined(AFX_CClientForm_H__ACD9E9EA_B724_4711_9C6F_DE3ADA090E2E__INCLUDED_)