// SearchClient.h: interface for the SearchClient class. // ////////////////////////////////////////////////////////////////////// #if !defined(AFX_SearchClient_H__9E2611E5_0E62_4671_A849_BE55510672CB__INCLUDED_) #define AFX_SearchClient_H__9E2611E5_0E62_4671_A849_BE55510672CB__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif #include "MyDlg.h" #include "AutoCompl.h" class SearchClient : public MyDlg // 选片或看设计时,F2 F3会用到; { CArraym_List1array; CAutoComplete m_acCombo; CFont tpFont; CComboBox m_combobox; public: BOOL m_bLogout; int m_exitcode; int m_mode; void Begin(); SearchClient(); virtual ~SearchClient(); void BtnClick(WPARAM wParam, LPARAM lParam); void Init(); void Destory(); BOOL PreTransMsg(MSG* pMsg); void OnFSCommand(LPCTSTR command, LPCTSTR args); }; #endif