ClientWnd.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. #if !defined(AFX_CLIENTWND_H__3A1428B1_4FB8_4CCE_B367_2FF7083311BA__INCLUDED_)
  2. #define AFX_CLIENTWND_H__3A1428B1_4FB8_4CCE_B367_2FF7083311BA__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // ClientWnd.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CClientWnd window
  10. #include "AutoCompl.h"
  11. #include "LabelEx.h"
  12. class CClientWnd : public CWnd
  13. {
  14. CArray<CStringArray, CStringArray>m_List1array;
  15. CAutoComplete m_acCombo;
  16. CFont tpFont;
  17. CComboBox m_combobox;
  18. BOOL m_bInit;
  19. CLabelEx m_label[50];
  20. // Construction
  21. public:
  22. CClientWnd();
  23. // Attributes
  24. public:
  25. // Operations
  26. public:
  27. // Overrides
  28. // ClassWizard generated virtual function overrides
  29. //{{AFX_VIRTUAL(CClientWnd)
  30. //}}AFX_VIRTUAL
  31. // Implementation
  32. public:
  33. void ShowCtrls(BOOL bShow);
  34. virtual ~CClientWnd();
  35. // Generated message map functions
  36. protected:
  37. //{{AFX_MSG(CClientWnd)
  38. afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  39. afx_msg void OnSelchangeCOMBOid();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_CLIENTWND_H__3A1428B1_4FB8_4CCE_B367_2FF7083311BA__INCLUDED_)