Click here to Skip to main content
15,892,161 members
Articles / Desktop Programming / MFC

The alxBase classes for work with DBF files

Rate me:
Please Sign up or sign in to vote.
5.00/5 (22 votes)
5 Nov 20021 min read 363.4K   3.8K   57  
The alxBase classes for work with dbf files.
#if !defined(AFX_FINDDLG_H__805CB761_E507_11D6_A8C0_B7F149517613__INCLUDED_)
#define AFX_FINDDLG_H__805CB761_E507_11D6_A8C0_B7F149517613__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// FindDlg.h : header file
//

#include "ALXSyntaxEditCtrl.h"

#define IDFT_FINDFIRST	0
#define IDFT_FINDNEXT	1
#define IDFT_FINDLAST	2
#define IDFT_FINDPREV	3

/////////////////////////////////////////////////////////////////////////////
// CFindDlg dialog

class CFindDlg : public CDialog
{
// Construction
public:
	CFindDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CFindDlg)
	enum { IDD = IDD_FINDEXPRESSION_DLG };
	CALXSyntaxEditCtrl	m_ctrlEditExpression;
	//}}AFX_DATA

	CString m_strExpression;
	int	m_nFindType;

// 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 void OnBtnFindFirst();
	afx_msg void OnBtnFindLast();
	afx_msg void OnBtnFindNext();
	afx_msg void OnBtnFindPrev();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_FINDDLG_H__805CB761_E507_11D6_A8C0_B7F149517613__INCLUDED_)

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
Russian Federation Russian Federation
Year of birth - 1974.
Eeducation - was ended by Kaliningrad State University in 1997.
Now I work as the engineer-programmer in Kaliningrad (RUSSIA).

Comments and Discussions