50 lines
1.0 KiB
C++
50 lines
1.0 KiB
C++
// DLG_C_Pay_ADCCJ.cpp : implementation file
|
|
//
|
|
|
|
#include "stdafx.h"
|
|
#include "smsmanager.h"
|
|
#include "DLG_C_Pay_ADCCJ.h"
|
|
|
|
#ifdef _DEBUG
|
|
#define new DEBUG_NEW
|
|
#undef THIS_FILE
|
|
static char THIS_FILE[] = __FILE__;
|
|
#endif
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// DLG_C_Pay_ADCCJ dialog
|
|
|
|
|
|
DLG_C_Pay_ADCCJ::DLG_C_Pay_ADCCJ(CWnd* pParent /*=NULL*/)
|
|
: CDialog(DLG_C_Pay_ADCCJ::IDD, pParent)
|
|
{
|
|
//{{AFX_DATA_INIT(DLG_C_Pay_ADCCJ)
|
|
m_tDate = COleDateTime::GetCurrentTime();
|
|
//}}AFX_DATA_INIT
|
|
}
|
|
|
|
|
|
void DLG_C_Pay_ADCCJ::DoDataExchange(CDataExchange* pDX)
|
|
{
|
|
CDialog::DoDataExchange(pDX);
|
|
//{{AFX_DATA_MAP(DLG_C_Pay_ADCCJ)
|
|
DDX_DateTimeCtrl(pDX, IDD_C_PAY_ADCCJ_DATE, m_tDate);
|
|
//}}AFX_DATA_MAP
|
|
}
|
|
|
|
|
|
BEGIN_MESSAGE_MAP(DLG_C_Pay_ADCCJ, CDialog)
|
|
//{{AFX_MSG_MAP(DLG_C_Pay_ADCCJ)
|
|
//}}AFX_MSG_MAP
|
|
END_MESSAGE_MAP()
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
// DLG_C_Pay_ADCCJ message handlers
|
|
|
|
void DLG_C_Pay_ADCCJ::OnOK()
|
|
{
|
|
UpdateData(true);
|
|
|
|
CDialog::OnOK();
|
|
}
|