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

