58 lines
1.4 KiB
C++
58 lines
1.4 KiB
C++
|
// DLG_Corp_Oper_Msg.cpp : implementation file
|
||
|
//
|
||
|
|
||
|
#include "stdafx.h"
|
||
|
#include "smsmanager.h"
|
||
|
#include "DLG_Corp_Oper_Msg.h"
|
||
|
|
||
|
#ifdef _DEBUG
|
||
|
#define new DEBUG_NEW
|
||
|
#undef THIS_FILE
|
||
|
static char THIS_FILE[] = __FILE__;
|
||
|
#endif
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_Corp_Oper_Msg dialog
|
||
|
|
||
|
|
||
|
DLG_Corp_Oper_Msg::DLG_Corp_Oper_Msg(CWnd* pParent /*=NULL*/)
|
||
|
: CDialog(DLG_Corp_Oper_Msg::IDD, pParent)
|
||
|
{
|
||
|
//{{AFX_DATA_INIT(DLG_Corp_Oper_Msg)
|
||
|
/*
|
||
|
m_strBZ = _T("");
|
||
|
m_strCorpID = _T("");
|
||
|
m_strCorpName = _T("");
|
||
|
m_strMsg = _T("");
|
||
|
m_strTime = _T("");
|
||
|
m_strType = _T("");
|
||
|
m_strUser = _T("");
|
||
|
*/
|
||
|
//}}AFX_DATA_INIT
|
||
|
}
|
||
|
|
||
|
|
||
|
void DLG_Corp_Oper_Msg::DoDataExchange(CDataExchange* pDX)
|
||
|
{
|
||
|
CDialog::DoDataExchange(pDX);
|
||
|
//{{AFX_DATA_MAP(DLG_Corp_Oper_Msg)
|
||
|
DDX_Text(pDX, IDC_CORP_OPER_MSG_BZ, m_strBZ);
|
||
|
DDX_Text(pDX, IDC_CORP_OPER_MSG_CORPID, m_strCorpID);
|
||
|
DDX_Text(pDX, IDC_CORP_OPER_MSG_CORPNAME, m_strCorpName);
|
||
|
DDX_Text(pDX, IDC_CORP_OPER_MSG_MSG, m_strMsg);
|
||
|
DDX_Text(pDX, IDC_CORP_OPER_MSG_TIME, m_strTime);
|
||
|
DDX_Text(pDX, IDC_CORP_OPER_MSG_TYPE, m_strType);
|
||
|
DDX_Text(pDX, IDC_CORP_OPER_MSG_USER, m_strUser);
|
||
|
//}}AFX_DATA_MAP
|
||
|
}
|
||
|
|
||
|
|
||
|
BEGIN_MESSAGE_MAP(DLG_Corp_Oper_Msg, CDialog)
|
||
|
//{{AFX_MSG_MAP(DLG_Corp_Oper_Msg)
|
||
|
// NOTE: the ClassWizard will add message map macros here
|
||
|
//}}AFX_MSG_MAP
|
||
|
END_MESSAGE_MAP()
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_Corp_Oper_Msg message handlers
|