home *** CD-ROM | disk | FTP | other *** search
- // FindDlg.h : header file
- //
-
- /////////////////////////////////////////////////////////////////////////////
- // CFindDlg dialog
-
- class CFindDlg : public CDialog
- {
- // Construction
- public:
- CFindDlg(CWnd* pParent = NULL); // standard constructor
- enum { LIKE, EXACT, CONTAINS }; //Match type desired
-
- // Dialog Data
- //{{AFX_DATA(CFindDlg)
- enum { IDD = IDD_DIALOG_FIND };
- int m_nMatchType;
- CString m_strFind;
- //}}AFX_DATA
-
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CFindDlg)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
-
- // Generated message map functions
- //{{AFX_MSG(CFindDlg)
- virtual BOOL OnInitDialog();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-