SearchCustomDlg.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. // SearchCustomDlg.cpp : implementation file
  12. //
  13. #include "stdafx.h"
  14. #include "myicq.h"
  15. #include "SearchCustomDlg.h"
  16. #ifdef _DEBUG
  17. #define new DEBUG_NEW
  18. #undef THIS_FILE
  19. static char THIS_FILE[] = __FILE__;
  20. #endif
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CSearchCustomDlg property page
  23. IMPLEMENT_DYNCREATE(CSearchCustomDlg, CPropertyPage)
  24. CSearchCustomDlg::CSearchCustomDlg() : CPropertyPage(CSearchCustomDlg::IDD)
  25. {
  26. //{{AFX_DATA_INIT(CSearchCustomDlg)
  27. m_email = _T("");
  28. m_nick = _T("");
  29. m_uin = 0;
  30. //}}AFX_DATA_INIT
  31. }
  32. CSearchCustomDlg::~CSearchCustomDlg()
  33. {
  34. }
  35. void CSearchCustomDlg::DoDataExchange(CDataExchange* pDX)
  36. {
  37. CPropertyPage::DoDataExchange(pDX);
  38. //{{AFX_DATA_MAP(CSearchCustomDlg)
  39. DDX_Text(pDX, IDC_EMAIL, m_email);
  40. DDX_Text(pDX, IDC_NICK, m_nick);
  41. DDX_Text(pDX, IDC_UIN, m_uin);
  42. //}}AFX_DATA_MAP
  43. }
  44. BEGIN_MESSAGE_MAP(CSearchCustomDlg, CPropertyPage)
  45. //{{AFX_MSG_MAP(CSearchCustomDlg)
  46. // NOTE: the ClassWizard will add message map macros here
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CSearchCustomDlg message handlers
  51. BOOL CSearchCustomDlg::OnSetActive() 
  52. {
  53. ((CPropertySheet *) GetParent())->SetWizardButtons(PSWIZB_BACK | PSWIZB_NEXT);
  54. return CPropertyPage::OnSetActive();
  55. }