SysmtDlg.cpp
上传用户:sztwq510
上传日期:2013-06-26
资源大小:4045k
文件大小:1k
源码类别:

酒店行业

开发平台:

Java

  1. // SysmtDlg.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "MyPos.h"
  5. #include "SysmtDlg.h"
  6. #include "SyssetDlg.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CSysmtDlg dialog
  14. extern CMyPosApp theApp;
  15. CSysmtDlg::CSysmtDlg(CWnd* pParent /*=NULL*/)
  16. : CDialog(CSysmtDlg::IDD, pParent)
  17. {
  18. //{{AFX_DATA_INIT(CSysmtDlg)
  19. // NOTE: the ClassWizard will add member initialization here
  20. //}}AFX_DATA_INIT
  21. }
  22. void CSysmtDlg::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CDialog::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CSysmtDlg)
  26. DDX_Control(pDX, IDC_TAB_SYSMT, m_oTabSys);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CSysmtDlg, CDialog)
  30. //{{AFX_MSG_MAP(CSysmtDlg)
  31. //}}AFX_MSG_MAP
  32. END_MESSAGE_MAP()
  33. /////////////////////////////////////////////////////////////////////////////
  34. // CSysmtDlg message handlers
  35. BOOL CSysmtDlg::OnInitDialog() 
  36. {
  37. CDialog::OnInitDialog();
  38. // TODO: Add extra initialization here
  39. m_oTabSys.AddPage("用户资料", &m_oUserdlg, IDD_DIALOG_USER);
  40. m_oTabSys.AddPage("系统设置", &m_oSyssetdlg, IDD_DIALOG_SYSSET);
  41. if(theApp.VerifyPower("Deldata"))
  42. m_oTabSys.AddPage("清除数据", &m_oCleardlg, IDD_DIALOG_CLEAR);
  43. m_oTabSys.Show();
  44. return TRUE;  // return TRUE unless you set the focus to a control
  45.               // EXCEPTION: OCX Property Pages should return FALSE
  46. }