52 lines
1.2 KiB
C++
52 lines
1.2 KiB
C++
|
// DLG_K_YWMsg_See.cpp : implementation file
|
||
|
//
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "smsmanager.h"
|
||
|
#include "DLG_K_YWMsg_See.h"
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#define new DEBUG_NEW
|
||
|
#undef THIS_FILE
|
||
|
static char THIS_FILE[] = __FILE__;
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_K_YWMsg_See dialog
|
||
|
|
||
|
|
||
|
DLG_K_YWMsg_See::DLG_K_YWMsg_See(CWnd* pParent /*=NULL*/)
|
||
|
: CDialog(DLG_K_YWMsg_See::IDD, pParent)
|
||
|
{
|
||
|
//{{AFX_DATA_INIT(DLG_K_YWMsg_See)
|
||
|
/*
|
||
|
m_strBZ = _T("");
|
||
|
m_strCorpName = _T("");
|
||
|
m_strName = _T("");
|
||
|
m_strTime = _T("");
|
||
|
*/
|
||
|
//}}AFX_DATA_INIT
|
||
|
}
|
||
|
|
||
|
|
||
|
void DLG_K_YWMsg_See::DoDataExchange(CDataExchange* pDX)
|
||
|
{
|
||
|
CDialog::DoDataExchange(pDX);
|
||
|
//{{AFX_DATA_MAP(DLG_K_YWMsg_See)
|
||
|
DDX_Text(pDX, IDD_K_YWMSG_BZ, m_strBZ);
|
||
|
DDX_Text(pDX, IDD_K_YWMSG_CORPNAME, m_strCorpName);
|
||
|
DDX_Text(pDX, IDD_K_YWMSG_NAME, m_strName);
|
||
|
DDX_Text(pDX, IDD_K_YWMSG_TIME, m_strTime);
|
||
|
//}}AFX_DATA_MAP
|
||
|
}
|
||
|
|
||
|
|
||
|
BEGIN_MESSAGE_MAP(DLG_K_YWMsg_See, CDialog)
|
||
|
//{{AFX_MSG_MAP(DLG_K_YWMsg_See)
|
||
|
// NOTE: the ClassWizard will add message map macros here
|
||
|
//}}AFX_MSG_MAP
|
||
|
END_MESSAGE_MAP()
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_K_YWMsg_See message handlers
|