// InfoDlg.h : header file
//

#include "resource.h"

/////////////////////////////////////////////////////////////////////////////
// CInfoDlg dialog

class CInfoDlg : public CDialog
{
// Construction
public:
	CInfoDlg(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CInfoDlg)
	enum { IDD = IDD_INFORMATION };
	CButton	m_btnCaption_WhatHappened;
	CButton	m_btnCaption_Results;
	CButton	m_btnCaption_CorrectiveAction;
	CProgressCtrl	m_ProgressCtrl;
	CString	m_csCorrectiveAction;
	CString	m_csResults;
	CString	m_csWhatHappened;
	//}}AFX_DATA
	UINT		m_nTimeout;
	CString	m_csCaption;
	CString	m_csCaption_WhatHappened;
	CString	m_csCaption_Results;
	CString	m_csCaption_CorrectiveAction;

// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CInfoDlg)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:
	BOOL		m_bTimer;

	// Generated message map functions
	//{{AFX_MSG(CInfoDlg)
	afx_msg void OnClickTimeoutProgress(NMHDR* pNMHDR, LRESULT* pResult);
	virtual BOOL OnInitDialog();
	afx_msg void OnTimer(UINT nIDEvent);
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

