www.pudn.com > 6manager_server.rar > ConnectDlg.cpp


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