Click here to Skip to main content
15,892,674 members
Articles / Desktop Programming / Win32

Creation and memory mapping existing DBF files as alternative of data serialization during work with modified CListCtrl classes in virtual mode on dialogs of MDI application

Rate me:
Please Sign up or sign in to vote.
4.64/5 (6 votes)
22 Jul 2009CPOL11 min read 47.2K   1.5K   26  
The demonstration of reading, writing and creation of standard DBF files with random access in memory instead of serialization of typical MFC application for descendants of CListCtrl classes in Virtual Mode.
/////////////////////////////////////////////////////////////////////////////
// StdAfx.cpp : source file that includes just the standard includes
/////////////////////////////////////////////////////////////////////////////

#include "StdAfx.h"

#if defined(_UNICODE)
	#pragma comment(linker, "/entry:wWinMainCRTStartup")
#endif  // _UNICODE

/////////////////////////////////////////////////////////////////////////////
// _M - Shows an int nVal with AfxMessageBox
/////////////////////////////////////////////////////////////////////////////
void _M(int nVal) {
	TCHAR szVal[MAXITEMTEXT];

	swprintf(szVal, _T("%d"), nVal);
	AfxMessageBox(szVal);
}

/////////////////////////////////////////////////////////////////////////////
// _M - Shows an CString sStr with AfxMessageBox
/////////////////////////////////////////////////////////////////////////////
void _M(CString sStr) {
	TCHAR szVal[MAXITEMTEXT];

	swprintf(szVal, _T("%s"), sStr);
	AfxMessageBox(szVal);
}

/////////////////////////////////////////////////////////////////////////////
// _M - Shows an TCHAR *szStr with AfxMessageBox
/////////////////////////////////////////////////////////////////////////////
void _M(TCHAR *szStr) {
	TCHAR szVal[MAXITEMTEXT];

	swprintf(szVal, _T("%s"), szStr);
	AfxMessageBox(szVal);
}
/*
/////////////////////////////////////////////////////////////////////////////
// _M - Shows an wchar_t *szStr with AfxMessageBox
/////////////////////////////////////////////////////////////////////////////
void _M(wchar_t *szStr) {
	TCHAR szVal[MAXITEMTEXT];

	swprintf(szVal, _T("%s"), szStr);
	AfxMessageBox(szVal);
}
*/
/////////////////////////////////////////////////////////////////////////////
/////////////////////////////////////////////////////////////////////////////

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, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer
Ukraine Ukraine
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions