Click here to Skip to main content
15,885,546 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 199.5K   5.5K   85  
The ALXGrid Control Library is a set of classes for management of data as a table.
// ClassDlg.h : header file
// CG: This file was added by the AppWizard Tools component

#include "Names.h"

/////////////////////////////////////////////////////////////////////////////
// CClassesDlg dialog

class CClassesDlg : public CAppWizStepDlg
{
// Construction
public:
	CClassesDlg();
	virtual BOOL OnDismiss();

// Dialog Data
	//{{AFX_DATA(CClassesDlg)
	enum { IDD = IDD_CLASSES };
	CListBox	m_classList;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CClassesDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);	// DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	int m_iSelOld;
	afx_msg void OnShowWindow(BOOL bShow, UINT nStatus);
	void WriteValues();
	BOOL m_bValidate;
	void DDV_FileName(CDataExchange* pDX, CString& s, LPCTSTR pszExtension = NULL);
	void DDV_ClassName(CDataExchange* pDX, CString& s);

	CBitmap m_bmpFlag;
	CBitmap m_bmpFon;

	// Generated message map functions
	//{{AFX_MSG(CClassesDlg)
	afx_msg void OnSelectClass();
	afx_msg void OnChangeClassName();
	afx_msg void OnChangeHFile();
	afx_msg void OnChangeIFile();
	afx_msg void OnPaint();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
private:
};

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