Click here to Skip to main content
15,892,737 members
Articles / Programming Languages / C++

CatchCulator

Rate me:
Please Sign up or sign in to vote.
4.97/5 (71 votes)
18 Oct 2005CPOL7 min read 130.8K   2K   69  
A tool used to catch and combine values output by different applications.
// SetTimerDlg.cpp : implementation file
//

#include "stdafx.h"
#include "CatchCulator.h"
#include "SetTimerDlg.h"

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

/////////////////////////////////////////////////////////////////////////////
// CSetTimerDlg dialog


CSetTimerDlg::CSetTimerDlg(CWnd* pParent /*=NULL*/)
	: CDialog(CSetTimerDlg::IDD, pParent)
{
	//{{AFX_DATA_INIT(CSetTimerDlg)
	m_nValueIndex = 5;
	//}}AFX_DATA_INIT
}


void CSetTimerDlg::DoDataExchange(CDataExchange* pDX)
{
	CDialog::DoDataExchange(pDX);
	//{{AFX_DATA_MAP(CSetTimerDlg)
	DDX_CBIndex(pDX, IDC_COMBO_TIMER_VALUES, m_nValueIndex);
	//}}AFX_DATA_MAP
}


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

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


Written By
Software Developer (Senior)
Europe Europe
More than 30 years of software development experience.
(also playing the SCRUM Master role depending on the project)

Comments and Discussions