ConnectDlg.cpp
上传用户:tuheem
上传日期:2007-05-01
资源大小:21889k
文件大小:1k
源码类别:

多媒体编程

开发平台:

Visual C++

  1. // ConnectDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. //#include "mtmdi.h"
  5. #include "ConnectDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11.  char AddressIp[80];
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CConnectDlg dialog
  14. CConnectDlg::CConnectDlg(CWnd* pParent /*=NULL*/)
  15. : CDialog(CConnectDlg::IDD, pParent)
  16. {
  17. //{{AFX_DATA_INIT(CConnectDlg)
  18. //}}AFX_DATA_INIT
  19. }
  20. void CConnectDlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(CConnectDlg)
  24. DDX_Control(pDX, IDC_IPADDRESS1, m_SenderIp);
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(CConnectDlg, CDialog)
  28. //{{AFX_MSG_MAP(CConnectDlg)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // CConnectDlg message handlers
  33. void CConnectDlg::OnOK() 
  34. {
  35. // TODO: Add extra validation here
  36.   BYTE bit1,bit2,bit3,bit4;
  37.   m_SenderIp.GetAddress(bit1,bit2,bit3,bit4); 
  38.   sprintf(AddressIp, "%d.%d.%d.%d", bit1,bit2,bit3,bit4);
  39.   CDialog::OnOK();
  40. }