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

远程控制编程

开发平台:

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. // Wizard6.cpp : implementation file
  16. //
  17. #include "stdafx.h"
  18. #include "bo2kcfg.h"
  19. #include "Wizard6.h"
  20. #ifdef _DEBUG
  21. #define new DEBUG_NEW
  22. #undef THIS_FILE
  23. static char THIS_FILE[] = __FILE__;
  24. #endif
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CWizard6 dialog
  27. CWizard6::CWizard6(CWnd* pParent /*=NULL*/)
  28. : CDialog(CWizard6::IDD, pParent)
  29. {
  30. //{{AFX_DATA_INIT(CWizard6)
  31. m_strPassword = _T("");
  32. m_nLetterCount = 0;
  33. //}}AFX_DATA_INIT
  34. }
  35. void CWizard6::DoDataExchange(CDataExchange* pDX)
  36. {
  37. CDialog::DoDataExchange(pDX);
  38. //{{AFX_DATA_MAP(CWizard6)
  39. DDX_Text(pDX, IDC_PASSWORD, m_strPassword);
  40. DDX_Text(pDX, IDC_LETTERCOUNT, m_nLetterCount);
  41. //}}AFX_DATA_MAP
  42. }
  43. BEGIN_MESSAGE_MAP(CWizard6, CDialog)
  44. //{{AFX_MSG_MAP(CWizard6)
  45. ON_BN_CLICKED(IDBACK, OnBack)
  46. ON_EN_CHANGE(IDC_PASSWORD, OnChangePassword)
  47. //}}AFX_MSG_MAP
  48. END_MESSAGE_MAP()
  49. /////////////////////////////////////////////////////////////////////////////
  50. // CWizard6 message handlers
  51. void CWizard6::OnBack() 
  52. {
  53. EndDialog(IDBACK);
  54. }
  55. void CWizard6::OnChangePassword() 
  56. {
  57. CString txt;
  58. int nLen;
  59. GetDlgItemText(IDC_PASSWORD,txt);
  60. nLen=txt.GetLength();
  61. SetDlgItemInt(IDC_LETTERCOUNT,nLen,TRUE);
  62. if(nLen>=m_nMinLetterCount &&
  63. nLen<=m_nMaxLetterCount) {
  64. GetDlgItem(IDOK)->EnableWindow();
  65. } else {
  66. if(nLen<=m_nMaxLetterCount) {
  67. GetDlgItem(IDOK)->EnableWindow(FALSE);
  68. } else {
  69. SetDlgItemText(IDC_PASSWORD,txt.Left(m_nMaxLetterCount));
  70. }
  71. }
  72. }
  73. BOOL CWizard6::OnInitDialog() 
  74. {
  75. CDialog::OnInitDialog();
  76. OnChangePassword();
  77. return TRUE;  // return TRUE unless you set the focus to a control
  78.               // EXCEPTION: OCX Property Pages should return FALSE
  79. }