123456789101112131415161718192021222324252627282930313233 |
- // SearchClient.h: interface for the SearchClient class.
- //
- //////////////////////////////////////////////////////////////////////
- class SearchClient : public MyDlg
- {
- CArray<CStringArray, CStringArray>m_List1array;
- CAutoComplete m_acCombo;
- CFont tpFont;
- CComboBox m_combobox;
- public:
- 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);
- };
|