ClientForm.h 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  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. #include "MyFormView.h"
  14. class CClientForm : public MyFormView
  15. {
  16. BOOL m_bHideBtn;
  17. CString m_area;
  18. CArray<CStringArray, CStringArray>m_List1array;
  19. protected:
  20. CClientForm(); // protected constructor used by dynamic creation
  21. DECLARE_DYNCREATE(CClientForm)
  22. // Form Data
  23. public:
  24. //{{AFX_DATA(CClientForm)
  25. enum { IDD = IDD_DLGClientForm };
  26. CComboBox m_combo1;
  27. CSortListCtrl2 m_List1;
  28. CStatic m_static1;
  29. CString m_filter;
  30. //}}AFX_DATA
  31. // Attributes
  32. public:
  33. // Operations
  34. public:
  35. void HidePrice();
  36. void GetClientPhone();
  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 OnSelchangeCombo1();
  59. afx_msg void OnTimer(UINT nIDEvent);
  60. afx_msg void OnButton2();
  61. afx_msg void OnButton3();
  62. //}}AFX_MSG
  63. DECLARE_MESSAGE_MAP()
  64. };
  65. /////////////////////////////////////////////////////////////////////////////
  66. //{{AFX_INSERT_LOCATION}}
  67. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  68. #endif // !defined(AFX_CClientForm_H__ACD9E9EA_B724_4711_9C6F_DE3ADA090E2E__INCLUDED_)