StartDlg.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:1k
- // StartDlg.cpp : implementation file
- //
- #include "stdafx.h"
- #include "autoupdate.h"
- #include "StartDlg.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CStartDlg dialog
- CStartDlg::CStartDlg(CWnd* pParent /*=NULL*/)
- : CDialog(CStartDlg::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CStartDlg)
- // NOTE: the ClassWizard will add member initialization here
- //}}AFX_DATA_INIT
- }
- void CStartDlg::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CStartDlg)
- DDX_Control(pDX, IDC_STATIC_PROMPT, m_scPrompt);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CStartDlg, CDialog)
- //{{AFX_MSG_MAP(CStartDlg)
- // NOTE: the ClassWizard will add message map macros here
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CStartDlg message handlers
- void CStartDlg::SetPrompt(LPCSTR szPrompt)
- {
- m_scPrompt.SetWindowText(szPrompt);
- Sleep(100);
- }