#if !defined(AFX_ShowLOg_H__65E06C68_062F_43E8_8784_FAFC721BC144__INCLUDED_) #define AFX_ShowLOg_H__65E06C68_062F_43E8_8784_FAFC721BC144__INCLUDED_ #if _MSC_VER > 1000 #pragma once #endif // _MSC_VER > 1000 // ShowLOg.h : header file // ///////////////////////////////////////////////////////////////////////////// // ShowLOg dialog // Jeff. // .查找的表是log表,限制的日志时间范围在version表字段logdays; // 1.初始化后,显示的日志是默认的6个月全部内容; // 2.根据开始和结束时间,点击时间查询过滤出指定时间段的日志; // 3.内容模糊查找,是在当前列表内容里查找,用一内存存储该列表内容; // // 写日志:查找服务器源码 writelog; // class ShowLOg : public CDialog { CArraym_List1array; // Construction public: void GetData(); ShowLOg(CWnd* pParent = NULL); // standard constructor // Dialog Data //{{AFX_DATA(ShowLOg) enum { IDD = IDD_DLGShowLOg }; CComboBox m_combo1; CSortListCtrl2 m_List1; //}}AFX_DATA // Overrides // ClassWizard generated virtual function overrides //{{AFX_VIRTUAL(ShowLOg) protected: virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support //}}AFX_VIRTUAL // Implementation protected: // Generated message map functions //{{AFX_MSG(ShowLOg) virtual BOOL OnInitDialog(); afx_msg void OnButton1(); //}}AFX_MSG DECLARE_MESSAGE_MAP() public: // Jeff.add int m_nIndex; CTime m_StartTime; CTime m_EndTime; afx_msg void OnBnClickedTimefilter(); afx_msg void OnBnClickedContentfind(); }; //{{AFX_INSERT_LOCATION}} // Microsoft Visual C++ will insert additional declarations immediately before the previous line. #endif // !defined(AFX_ShowLOg_H__65E06C68_062F_43E8_8784_FAFC721BC144__INCLUDED_)