MakeCallDlg.cpp
上传用户:hxb_1234
上传日期:2010-03-30
资源大小:8328k
文件大小:1k
源码类别:

VC书籍

开发平台:

Visual C++

  1. #include "stdafx.h"
  2. #include "AVDConf.h"
  3. #include "MakeCallDlg.h"
  4. #ifdef _DEBUG
  5. #define new DEBUG_NEW
  6. #undef THIS_FILE
  7. static char THIS_FILE[] = __FILE__;
  8. #endif
  9. extern BSTR g_bstrAddr;
  10. /////////////////////////////////////////////////////////////////////////////
  11. // MakeCallDlg dialog
  12. MakeCallDlg::MakeCallDlg(CWnd* pParent /*=NULL*/)
  13. : CDialog(MakeCallDlg::IDD, pParent)
  14. {
  15. //{{AFX_DATA_INIT(MakeCallDlg)
  16. // NOTE: the ClassWizard will add member initialization here
  17. //}}AFX_DATA_INIT
  18. }
  19. void MakeCallDlg::DoDataExchange(CDataExchange* pDX)
  20. {
  21. CDialog::DoDataExchange(pDX);
  22. //{{AFX_DATA_MAP(MakeCallDlg)
  23. // NOTE: the ClassWizard will add DDX and DDV calls here
  24. //}}AFX_DATA_MAP
  25. }
  26. BEGIN_MESSAGE_MAP(MakeCallDlg, CDialog)
  27. //{{AFX_MSG_MAP(MakeCallDlg)
  28. //}}AFX_MSG_MAP
  29. END_MESSAGE_MAP()
  30. /////////////////////////////////////////////////////////////////////////////
  31. // MakeCallDlg message handlers
  32. void MakeCallDlg::OnOK() 
  33. {
  34. WCHAR wszIPBuf[MAX_PATH];
  35. // Get the destination address.
  36. GetDlgItemTextW ( m_hWnd, IDC_DESTIP, wszIPBuf, MAX_PATH );
  37. // Convert the string to BSTR object.
  38. g_bstrAddr = SysAllocString ( _T(wszIPBuf) );
  39. CDialog::OnOK();
  40. }