Input.cpp
上传用户:hbytqc8
上传日期:2014-07-31
资源大小:527k
文件大小:1k
- // Input.cpp : implementation file
- //
- #include "stdafx.h"
- #include "NetMap.h"
- #include "Input.h"
- #ifdef _DEBUG
- #define new DEBUG_NEW
- #undef THIS_FILE
- static char THIS_FILE[] = __FILE__;
- #endif
- /////////////////////////////////////////////////////////////////////////////
- // CInput dialog
- CInput::CInput(CWnd* pParent /*=NULL*/)
- : CDialog(CInput::IDD, pParent)
- {
- //{{AFX_DATA_INIT(CInput)
- m_community = _T("");
- //}}AFX_DATA_INIT
- }
- void CInput::DoDataExchange(CDataExchange* pDX)
- {
- CDialog::DoDataExchange(pDX);
- //{{AFX_DATA_MAP(CInput)
- DDX_Control(pDX, IDC_IPADDRESS1, m_ipaddress);
- DDX_Text(pDX, IDC_EDIT2, m_community);
- //}}AFX_DATA_MAP
- }
- BEGIN_MESSAGE_MAP(CInput, CDialog)
- //{{AFX_MSG_MAP(CInput)
- ON_BN_CLICKED(IDAPP, OnApp)
- //}}AFX_MSG_MAP
- END_MESSAGE_MAP()
- /////////////////////////////////////////////////////////////////////////////
- // CInput message handlers
- void CInput::OnApp()
- {
- m_ipaddress.GetWindowText(m_ip);
- }