SetupDlg.cpp
上传用户:chenhai826
上传日期:2007-04-11
资源大小:72k
文件大小:1k
源码类别:

破解

开发平台:

Visual C++

  1. // SetupDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "nopassword.h"
  5. #include "SetupDlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CSetupDlg dialog
  13. CSetupDlg::CSetupDlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(CSetupDlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(CSetupDlg)
  17. m_AutoShutDown = FALSE;
  18. m_Sampling = _T("");
  19. m_Path = _T("");
  20. m_Scale = 0;
  21. //}}AFX_DATA_INIT
  22. }
  23. void CSetupDlg::DoDataExchange(CDataExchange* pDX)
  24. {
  25. CDialog::DoDataExchange(pDX);
  26. //{{AFX_DATA_MAP(CSetupDlg)
  27. DDX_Check(pDX, IDC_CHECK1, m_AutoShutDown);
  28. DDX_CBString(pDX, IDC_COMBO1, m_Sampling);
  29. DDX_Text(pDX, IDC_EDIT1, m_Path);
  30. DDX_Text(pDX, IDC_EDIT2, m_Scale);
  31. DDV_MinMaxInt(pDX, m_Scale, 1, 50);
  32. //}}AFX_DATA_MAP
  33. }
  34. BEGIN_MESSAGE_MAP(CSetupDlg, CDialog)
  35. //{{AFX_MSG_MAP(CSetupDlg)
  36. // NOTE: the ClassWizard will add message map macros here
  37. //}}AFX_MSG_MAP
  38. END_MESSAGE_MAP()
  39. /////////////////////////////////////////////////////////////////////////////
  40. // CSetupDlg message handlers