RegMiscDlg.cpp
上传用户:zslianheng
上传日期:2013-04-03
资源大小:946k
文件大小:2k
源码类别:

Linux/Unix编程

开发平台:

Visual C++

  1. /***************************************************************************
  2.  *                                                                         *
  3.  *   This program is free software; you can redistribute it and/or modify  *
  4.  *   it under the terms of the GNU General Public License as published by  *
  5.  *   the Free Software Foundation; either version 2 of the License, or     *
  6.  *   (at your option) any later version.                                   *
  7.  *                                                                         *
  8.  *   copyright            : (C) 2002 by Zhang Yong                         *
  9.  *   email                : z-yong163@163.com                              *
  10.  ***************************************************************************/
  11. // RegMiscDlg.cpp : implementation file
  12. //
  13. #include "stdafx.h"
  14. #include "myicq.h"
  15. #include "RegMiscDlg.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CRegMiscDlg property page
  23. IMPLEMENT_DYNCREATE(CRegMiscDlg, CPropertyPage)
  24. CRegMiscDlg::CRegMiscDlg() : CPropertyPage(CRegMiscDlg::IDD)
  25. {
  26. //{{AFX_DATA_INIT(CRegMiscDlg)
  27. m_blood = 0;
  28. m_college = _T("");
  29. m_homepage = _T("http://");
  30. m_intro.LoadString(IDS_INTRO);
  31. m_profession = _T("");
  32. m_name = _T("");
  33. //}}AFX_DATA_INIT
  34. }
  35. CRegMiscDlg::~CRegMiscDlg()
  36. {
  37. }
  38. void CRegMiscDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40. CPropertyPage::DoDataExchange(pDX);
  41. //{{AFX_DATA_MAP(CRegMiscDlg)
  42. DDX_CBIndex(pDX, IDC_BLOOD, m_blood);
  43. DDX_Text(pDX, IDC_COLLEGE, m_college);
  44. DDX_Text(pDX, IDC_HOMEPAGE, m_homepage);
  45. DDX_Text(pDX, IDC_INTRO, m_intro);
  46. DDX_CBString(pDX, IDC_PROFESSION, m_profession);
  47. DDX_Text(pDX, IDC_NAME, m_name);
  48. //}}AFX_DATA_MAP
  49. }
  50. BEGIN_MESSAGE_MAP(CRegMiscDlg, CPropertyPage)
  51. //{{AFX_MSG_MAP(CRegMiscDlg)
  52. // NOTE: the ClassWizard will add message map macros here
  53. //}}AFX_MSG_MAP
  54. END_MESSAGE_MAP()
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CRegMiscDlg message handlers