SETUPDLG.CPP
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // setupdlg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12. #include "stdafx.h"
  13. #include "chatter.h"
  14. #include "setupdlg.h"
  15. #ifdef _DEBUG
  16. #undef THIS_FILE
  17. static char BASED_CODE THIS_FILE[] = __FILE__;
  18. #endif
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CSetupDlg dialog
  21. CSetupDlg::CSetupDlg(CWnd* pParent /*=NULL*/)
  22. : CDialog(CSetupDlg::IDD, pParent)
  23. {
  24. //{{AFX_DATA_INIT(CSetupDlg)
  25. m_nChannel = 0;
  26. m_strHandle = _T("");
  27. m_strServer = _T("");
  28. //}}AFX_DATA_INIT
  29. }
  30. void CSetupDlg::DoDataExchange(CDataExchange* pDX)
  31. {
  32. CDialog::DoDataExchange(pDX);
  33. //{{AFX_DATA_MAP(CSetupDlg)
  34. DDX_Text(pDX, IDC_CHANNEL, m_nChannel);
  35. DDV_MinMaxInt(pDX, m_nChannel, 0, 99);
  36. DDX_Text(pDX, IDC_HANDLE, m_strHandle);
  37. DDV_MaxChars(pDX, m_strHandle, 50);
  38. DDX_Text(pDX, IDC_SERVER, m_strServer);
  39. DDV_MaxChars(pDX, m_strServer, 255);
  40. //}}AFX_DATA_MAP
  41. }
  42. BEGIN_MESSAGE_MAP(CSetupDlg, CDialog)
  43. //{{AFX_MSG_MAP(CSetupDlg)
  44. // NOTE: the ClassWizard will add message map macros here
  45. //}}AFX_MSG_MAP
  46. END_MESSAGE_MAP()
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CSetupDlg message handlers