Page2.cpp
上传用户:dzyhzl
上传日期:2019-04-29
资源大小:56270k
文件大小:2k
源码类别:

模拟服务器

开发平台:

C/C++

  1. // Page2.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "S3DBClient.h"
  5. #include "Page2.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CPage2 property page
  13. IMPLEMENT_DYNCREATE(CPage2, CPropertyPage)
  14. CPage2::CPage2() : CPropertyPage(CPage2::IDD)
  15. {
  16. //{{AFX_DATA_INIT(CPage2)
  17. //}}AFX_DATA_INIT
  18. }
  19. CPage2::~CPage2()
  20. {
  21. }
  22. void CPage2::DoDataExchange(CDataExchange* pDX)
  23. {
  24. CPropertyPage::DoDataExchange(pDX);
  25. //{{AFX_DATA_MAP(CPage2)
  26. DDX_Control(pDX, IDC_DBUSERLIST, m_dbUserListCtrl);
  27. //}}AFX_DATA_MAP
  28. }
  29. BEGIN_MESSAGE_MAP(CPage2, CPropertyPage)
  30. //{{AFX_MSG_MAP(CPage2)
  31. ON_WM_SHOWWINDOW()
  32. //}}AFX_MSG_MAP
  33. END_MESSAGE_MAP()
  34. /////////////////////////////////////////////////////////////////////////////
  35. // CPage2 message handlers
  36. BOOL CPage2::OnInitDialog() 
  37. {
  38. CPropertyPage::OnInitDialog();
  39. // TODO: Add extra initialization here
  40. static const CString itemNameArray[] =
  41. {
  42. _T("User name"),
  43. _T("Host addr"),
  44. _T("Priority"),
  45. _T("State"),
  46. _T("Last login time"),
  47. _T("Last logout time")
  48. };
  49. static const int itemWidthArray[] =
  50. {
  51. 70, 75, 60, 55, 120, 120
  52. };
  53. for ( int i = 0; i < 6; i++ )
  54. {
  55. m_dbUserListCtrl.InsertColumn( i,
  56. itemNameArray[i], LVCFMT_LEFT, itemWidthArray[i] );
  57. }
  58. return TRUE;  // return TRUE unless you set the focus to a control
  59.               // EXCEPTION: OCX Property Pages should return FALSE
  60. }
  61. void CPage2::OnShowWindow(BOOL bShow, UINT nStatus) 
  62. {
  63. CPropertyPage::OnShowWindow(bShow, nStatus);
  64. // TODO: Add your message handler code here
  65. if ( TRUE == bShow )
  66. {
  67. CWnd* pParent = GetParent();
  68. if ( NULL != pParent )
  69. {
  70. ::SendMessage( pParent->m_hWnd, WM_TURNTOPAGE2, 0, 0 );
  71. }
  72. }
  73. }