Click here to Skip to main content
15,886,833 members
Articles / Desktop Programming / MFC

An LED Style display control and bar control

Rate me:
Please Sign up or sign in to vote.
4.97/5 (17 votes)
17 Jan 2000 157K   7.5K   123  
A control to display time, floating point numbers or integers using an LED digital-style display
// StaticCounterExDemoDlg.h : header file
//

#if !defined(AFX_STATICCOUNTEREXDEMODLG_H__D473331F_CA9C_11D3_8040_00805FC1DE10__INCLUDED_)
#define AFX_STATICCOUNTEREXDEMODLG_H__D473331F_CA9C_11D3_8040_00805FC1DE10__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

#include "CStaticCounterEx/StaticCounter.h"
#include "CSTATICCOUNTEREX\StaticCounter.h"	// Added by ClassView

/////////////////////////////////////////////////////////////////////////////
// CStaticCounterExDemoDlg dialog

class CStaticCounterExDemoDlg : public CDialog
{
// Construction
public:
	CStaticCounter m_stcDemo2, m_stcDemo3;
	CStaticCounterExDemoDlg(CWnd* pParent = NULL);	// standard constructor

// Dialog Data
	//{{AFX_DATA(CStaticCounterExDemoDlg)
	enum { IDD = IDD_STATICCOUNTEREXDEMO_DIALOG };
	CStaticCounter	m_stcDemo4;
	CStaticCounter	m_stcDemo1;
	//}}AFX_DATA

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

// Implementation
protected:
	HICON m_hIcon;

	// Generated message map functions
	//{{AFX_MSG(CStaticCounterExDemoDlg)
	virtual BOOL OnInitDialog();
	afx_msg void OnPaint();
	afx_msg HCURSOR OnQueryDragIcon();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_STATICCOUNTEREXDEMODLG_H__D473331F_CA9C_11D3_8040_00805FC1DE10__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
United Kingdom United Kingdom
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions