123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- #include "stdafx.h"
- #include "lyfzipmanage.h"
- #include "InputDate.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- InputDate::InputDate(CWnd* pParent )
- : CDialog(InputDate::IDD, pParent)
- {
-
- m_date = CTime::GetCurrentTime();
- m_check1 = FALSE;
-
- }
- void InputDate::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
-
- DDX_DateTimeCtrl(pDX, IDC_DATETIMEPICKER1, m_date);
- DDX_Check(pDX, IDC_CHECK1, m_check1);
-
- }
- BEGIN_MESSAGE_MAP(InputDate, CDialog)
-
-
- END_MESSAGE_MAP()
- void InputDate::OnOK()
- {
-
- UpdateData();
- CDialog::OnOK();
- }
|