// Progress.cpp : implementation file // #include "stdafx.h" #include "Save.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // Progress dialog Progress::Progress(CWnd* pParent /*=NULL*/) : CDialog(Progress::IDD, pParent) { //{{AFX_DATA_INIT(Progress) m_Count = _T(""); //}}AFX_DATA_INIT } void Progress::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(Progress) DDX_Control(pDX, IDC_SAVE_PROGRESS, m_Progress); DDX_Text(pDX, IDC_SAVE_COUNT, m_Count); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(Progress, CDialog) //{{AFX_MSG_MAP(Progress) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // Progress message handlers BOOL Progress::OnInitDialog() { CDialog::OnInitDialog(); m_Count = "0"; return TRUE; // return TRUE unless you set the focus to a control // EXCEPTION: OCX Property Pages should return FALSE }