AddFreind.cpp
上传用户:onsales
上传日期:2010-01-31
资源大小:224k
文件大小:1k
源码类别:

网络编程

开发平台:

Visual C++

  1. // AddFreind.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MainBord.h"
  5. #include "AddFreind.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // AddFreind dialog
  13. AddFreind::AddFreind(CWnd* pParent /*=NULL*/)
  14. : CDialog(AddFreind::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(AddFreind)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void AddFreind::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(AddFreind)
  24. DDX_Control(pDX, IDC_IPADDRESS, m_IPAddress);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(AddFreind, CDialog)
  28. //{{AFX_MSG_MAP(AddFreind)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // AddFreind message handlers
  33. void AddFreind::OnOK() 
  34. {
  35. // TODO: Add extra validation here
  36. UpdateData(TRUE);
  37. m_IPAddress.GetWindowText(ipstr);
  38. CDialog::OnOK();
  39. }
  40. BOOL AddFreind::OnInitDialog() 
  41. {
  42. CDialog::OnInitDialog();
  43. // TODO: Add extra initialization here
  44. //m_IPAddress.SetWindowText(ipstr);
  45. return TRUE;  // return TRUE unless you set the focus to a control
  46.               // EXCEPTION: OCX Property Pages should return FALSE
  47. }