Click here to Skip to main content
15,892,005 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.7K   2K   69  
A tool used to catch and combine values output by different applications.
// Author: Dr. Mircea Puiu
// Created on: October 2005 for CodeProject
//
#if !defined(AFX_STATICDISPLAY_H__23BE2C9E_29A0_4099_9562_5CCAC4281AAB__INCLUDED_)
#define AFX_STATICDISPLAY_H__23BE2C9E_29A0_4099_9562_5CCAC4281AAB__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// StaticDisplay.h : header file
//

#include "ScriptDlg.h"

/////////////////////////////////////////////////////////////////////////////
// CStaticDisplay window

class CStaticDisplay : public CStatic
{
// Construction
public:
	CStaticDisplay();

// Attributes
public:

// Operations
public:

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CStaticDisplay)
	//}}AFX_VIRTUAL

// Implementation
public:
	CString m_strDisplayFormat;
	CScriptDlg m_dlgScript;
	CString m_strDisplay;
	int ID;
	virtual ~CStaticDisplay();

	// Generated message map functions
protected:
	//{{AFX_MSG(CStaticDisplay)
	afx_msg void OnPaint();
	afx_msg void OnRButtonDown(UINT nFlags, CPoint point);
	//}}AFX_MSG

	DECLARE_MESSAGE_MAP()
};

/////////////////////////////////////////////////////////////////////////////

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

#endif // !defined(AFX_STATICDISPLAY_H__23BE2C9E_29A0_4099_9562_5CCAC4281AAB__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, 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