Source code of Windows XP (NT5)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

55 lines
1.5 KiB

  1. //Copyright (c) 1998 - 1999 Microsoft Corporation
  2. // LSProp.cpp : implementation file
  3. //
  4. #include "stdafx.h"
  5. #include "LicMgr.h"
  6. #include "LSProp.h"
  7. #ifdef _DEBUG
  8. #define new DEBUG_NEW
  9. #undef THIS_FILE
  10. static char THIS_FILE[] = __FILE__;
  11. #endif
  12. /////////////////////////////////////////////////////////////////////////////
  13. // CLicensePropertypage property page
  14. IMPLEMENT_DYNCREATE(CLicensePropertypage, CPropertyPage)
  15. CLicensePropertypage::CLicensePropertypage() : CPropertyPage(CLicensePropertypage::IDD)
  16. {
  17. //{{AFX_DATA_INIT(CLicensePropertypage)
  18. m_ExpiryDate = _T("");
  19. m_IssueDate = _T("");
  20. m_LicenseStatus = _T("");
  21. m_MachineName = _T("");
  22. m_UserName = _T("");
  23. //}}AFX_DATA_INIT
  24. }
  25. CLicensePropertypage::~CLicensePropertypage()
  26. {
  27. }
  28. void CLicensePropertypage::DoDataExchange(CDataExchange* pDX)
  29. {
  30. CPropertyPage::DoDataExchange(pDX);
  31. //{{AFX_DATA_MAP(CLicensePropertypage)
  32. DDX_Text(pDX, IDC_EXPIRY_DATE, m_ExpiryDate);
  33. DDX_Text(pDX, IDC_ISSUE_DATE, m_IssueDate);
  34. DDX_Text(pDX, IDC_LICENSE_STATUS, m_LicenseStatus);
  35. DDX_Text(pDX, IDC_MACHINE_NAME, m_MachineName);
  36. DDX_Text(pDX, IDC_USER_NAME, m_UserName);
  37. //}}AFX_DATA_MAP
  38. }
  39. BEGIN_MESSAGE_MAP(CLicensePropertypage, CPropertyPage)
  40. //{{AFX_MSG_MAP(CLicensePropertypage)
  41. // NOTE: the ClassWizard will add message map macros here
  42. //}}AFX_MSG_MAP
  43. END_MESSAGE_MAP()
  44. /////////////////////////////////////////////////////////////////////////////
  45. // CLicensePropertypage message handlers