www.pudn.com > MultiLineChatRoomVCSrc.zip > SendMessageDlg.cpp


// SendMessageDlg.cpp : implementation file 
// 
 
#include "stdafx.h" 
#include "ChatClient.h" 
#include "SendMessageDlg.h" 
 
#ifdef _DEBUG 
#define new DEBUG_NEW 
#undef THIS_FILE 
static char THIS_FILE[] = __FILE__; 
#endif 
 
///////////////////////////////////////////////////////////////////////////// 
// CSendMessageDlg dialog 
 
 
CSendMessageDlg::CSendMessageDlg(CWnd* pParent /*=NULL*/) 
	: CDialog(CSendMessageDlg::IDD, pParent) 
{ 
	//{{AFX_DATA_INIT(CSendMessageDlg) 
	m_strSentence = _T(""); 
	//}}AFX_DATA_INIT 
} 
 
 
void CSendMessageDlg::DoDataExchange(CDataExchange* pDX) 
{ 
	CDialog::DoDataExchange(pDX); 
	//{{AFX_DATA_MAP(CSendMessageDlg) 
	DDX_Text(pDX, IDC_SENDSENTENCE, m_strSentence); 
	//}}AFX_DATA_MAP 
} 
 
 
BEGIN_MESSAGE_MAP(CSendMessageDlg, CDialog) 
	//{{AFX_MSG_MAP(CSendMessageDlg) 
		// NOTE: the ClassWizard will add message map macros here 
	//}}AFX_MSG_MAP 
END_MESSAGE_MAP() 
 
///////////////////////////////////////////////////////////////////////////// 
// CSendMessageDlg message handlers