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

The ALXGrid Control Library.

Rate me:
Please Sign up or sign in to vote.
5.00/5 (29 votes)
10 Nov 20021 min read 201.1K   5.5K   85  
The ALXGrid Control Library is a set of classes for management of data as a table.
// RegGridDLG.cpp : implementation file
//

#include "stdafx.h"
#include "Grid.h"
#include "RegGridDLG.h"
#include "RegGridCtrl.h"

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

/////////////////////////////////////////////////////////////////////////////
// RegGridDLG dialog


CRegGridDLG::CRegGridDLG(CWnd* pParent /*=NULL*/)
	: CDialog(CRegGridDLG::IDD, pParent)
{
	if (!CRegGridCtrl::RegisterClass())
	{
		TRACE0("Failed to register grid control\n");
		return;
	}
	//{{AFX_DATA_INIT(CRegGridDLG)
		// NOTE: the ClassWizard will add member initialization here
	//}}AFX_DATA_INIT
}

CRegGridDLG::~CRegGridDLG()
{
	CRegGridCtrl::UnregisterClass();
}

void CRegGridDLG::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CRegGridDLG)
		// NOTE: the ClassWizard will add DDX and DDV calls here
	//}}AFX_DATA_MAP
}


BEGIN_MESSAGE_MAP(CRegGridDLG, CDialog)
	//{{AFX_MSG_MAP(CRegGridDLG)
		// NOTE: the ClassWizard will add message map macros here
	//}}AFX_MSG_MAP
END_MESSAGE_MAP()

/////////////////////////////////////////////////////////////////////////////
// CRegGridDLG message handlers

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