61 lines
1.5 KiB
C++
61 lines
1.5 KiB
C++
|
// DLG_SmsQueryLog_See.cpp : implementation file
|
||
|
//
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "corpsms.h"
|
||
|
#include "DLG_SmsQueryLog_See.h"
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#define new DEBUG_NEW
|
||
|
#undef THIS_FILE
|
||
|
static char THIS_FILE[] = __FILE__;
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_SmsQueryLog_See dialog
|
||
|
|
||
|
|
||
|
DLG_SmsQueryLog_See::DLG_SmsQueryLog_See(CWnd* pParent /*=NULL*/)
|
||
|
: CDialog(DLG_SmsQueryLog_See::IDD, pParent)
|
||
|
{
|
||
|
//{{AFX_DATA_INIT(DLG_SmsQueryLog_See)
|
||
|
m_strRecvMsg = _T("");
|
||
|
m_strRetMsg = _T("");
|
||
|
m_strSender = _T("");
|
||
|
m_strSendTime = _T("");
|
||
|
m_strStatus = _T("");
|
||
|
//}}AFX_DATA_INIT
|
||
|
}
|
||
|
|
||
|
|
||
|
void DLG_SmsQueryLog_See::DoDataExchange(CDataExchange* pDX)
|
||
|
{
|
||
|
CDialog::DoDataExchange(pDX);
|
||
|
//{{AFX_DATA_MAP(DLG_SmsQueryLog_See)
|
||
|
DDX_Text(pDX, IDC_SMSQUERYLOG_RECVMSG, m_strRecvMsg);
|
||
|
DDX_Text(pDX, IDC_SMSQUERYLOG_RETMSG, m_strRetMsg);
|
||
|
DDX_Text(pDX, IDC_SMSQUERYLOG_SENDER, m_strSender);
|
||
|
DDX_Text(pDX, IDC_SMSQUERYLOG_SENDTIME, m_strSendTime);
|
||
|
DDX_Text(pDX, IDC_SMSQUERYLOG_STATUS, m_strStatus);
|
||
|
//}}AFX_DATA_MAP
|
||
|
}
|
||
|
|
||
|
|
||
|
BEGIN_MESSAGE_MAP(DLG_SmsQueryLog_See, CDialog)
|
||
|
//{{AFX_MSG_MAP(DLG_SmsQueryLog_See)
|
||
|
//}}AFX_MSG_MAP
|
||
|
END_MESSAGE_MAP()
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_SmsQueryLog_See message handlers
|
||
|
|
||
|
BOOL DLG_SmsQueryLog_See::OnInitDialog()
|
||
|
{
|
||
|
CDialog::OnInitDialog();
|
||
|
|
||
|
// TODO: Add extra initialization here
|
||
|
|
||
|
return TRUE; // return TRUE unless you set the focus to a control
|
||
|
// EXCEPTION: OCX Property Pages should return FALSE
|
||
|
}
|