SearchClient.h 840 B

12345678910111213141516171819202122232425262728293031323334
  1. // SearchClient.h: interface for the SearchClient class.
  2. //
  3. //////////////////////////////////////////////////////////////////////
  4. #if !defined(AFX_SearchClient_H__9E2611E5_0E62_4671_A849_BE55510672CB__INCLUDED_)
  5. #define AFX_SearchClient_H__9E2611E5_0E62_4671_A849_BE55510672CB__INCLUDED_
  6. #if _MSC_VER > 1000
  7. #pragma once
  8. #endif
  9. #include "MyDlg.h"
  10. #include "AutoCompl.h"
  11. class SearchClient : public MyDlg // ѡƬ»ò¿´Éè¼ÆÊ±,F2 F3»áÓõ½;
  12. {
  13. CArray<CStringArray, CStringArray>m_List1array;
  14. CAutoComplete m_acCombo;
  15. CFont tpFont;
  16. CComboBox m_combobox;
  17. public:
  18. BOOL m_bLogout;
  19. int m_exitcode;
  20. int m_mode;
  21. void Begin();
  22. SearchClient();
  23. virtual ~SearchClient();
  24. void BtnClick(WPARAM wParam, LPARAM lParam);
  25. void Init();
  26. void Destory();
  27. BOOL PreTransMsg(MSG* pMsg);
  28. void OnFSCommand(LPCTSTR command, LPCTSTR args);
  29. };
  30. #endif