Click here to Skip to main content
15,881,803 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 360.8K   3.8K   57  
The alxBase classes for work with dbf files.
// DBFViewDoc.cpp : implementation of the CDBFViewDoc class
//

#include "stdafx.h"
#include "DBFViewApp.h"

#include "DBFViewDoc.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif

/////////////////////////////////////////////////////////////////////////////
// CDBFViewDoc

IMPLEMENT_DYNCREATE(CDBFViewDoc, CDocument)

BEGIN_MESSAGE_MAP(CDBFViewDoc, CDocument)
	//{{AFX_MSG_MAP(CDBFViewDoc)
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CDBFViewDoc construction/destruction

CDBFViewDoc::CDBFViewDoc()
{
}

CDBFViewDoc::~CDBFViewDoc()
{
	if(m_Set.IsOpen())
		m_Set.Close();
}

BOOL CDBFViewDoc::OnNewDocument()
{
	if (!CDocument::OnNewDocument())
		return FALSE;

	// TODO: add reinitialization code here
	// (SDI documents will reuse this document)

	return TRUE;
}



/////////////////////////////////////////////////////////////////////////////
// CDBFViewDoc serialization

void CDBFViewDoc::Serialize(CArchive& ar)
{
	if (ar.IsStoring())
	{
		// TODO: add storing code here
	}
	else
	{
		// TODO: add loading code here
	}
}

/////////////////////////////////////////////////////////////////////////////
// CDBFViewDoc diagnostics

#ifdef _DEBUG
void CDBFViewDoc::AssertValid() const
{
	CDocument::AssertValid();
}

void CDBFViewDoc::Dump(CDumpContext& dc) const
{
	CDocument::Dump(dc);
}
#endif //_DEBUG

/////////////////////////////////////////////////////////////////////////////
// CDBFViewDoc commands

BOOL CDBFViewDoc::OnOpenDocument(LPCTSTR lpszPathName) 
{
	DeleteContents();
	SetModifiedFlag(FALSE);

	BOOL bResult = TRUE;
	if(m_Set.IsOpen())
		m_Set.Close();

try
{
	m_Set.Open(lpszPathName);
}
catch(CDBFException* e)
{
	e->ReportError();
	e->Delete();
}
	if(!m_Set.IsOpen())
		bResult = FALSE;

	return bResult;
}










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