home *** CD-ROM | disk | FTP | other *** search
/ PC World 2003 June / PCWorld_2003-06_cd.bin / KOMUNIK / MIRRORIT / SRC / SESSIONPROPERTIESPASSWORDPA.CPP < prev    next >
C/C++ Source or Header  |  1998-01-05  |  1KB  |  49 lines

  1. // SessionPropertiesPasswordPage.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "MirrorIt.h"
  6. #include "SessionPropertiesPasswordPage.h"
  7.  
  8. #ifdef _DEBUG
  9. #define new DEBUG_NEW
  10. #undef THIS_FILE
  11. static char THIS_FILE[] = __FILE__;
  12. #endif
  13.  
  14. /////////////////////////////////////////////////////////////////////////////
  15. // CSessionPropertiesPasswordPage property page
  16.  
  17. IMPLEMENT_DYNCREATE(CSessionPropertiesPasswordPage, CPropertyPage)
  18.  
  19. CSessionPropertiesPasswordPage::CSessionPropertiesPasswordPage() : CPropertyPage(CSessionPropertiesPasswordPage::IDD)
  20. {
  21.     //{{AFX_DATA_INIT(CSessionPropertiesPasswordPage)
  22.     m_Password = _T("");
  23.     m_UserName = _T("");
  24.     //}}AFX_DATA_INIT
  25. }
  26.  
  27. CSessionPropertiesPasswordPage::~CSessionPropertiesPasswordPage()
  28. {
  29. }
  30.  
  31. void CSessionPropertiesPasswordPage::DoDataExchange(CDataExchange* pDX)
  32. {
  33.     CPropertyPage::DoDataExchange(pDX);
  34.     //{{AFX_DATA_MAP(CSessionPropertiesPasswordPage)
  35.     DDX_Text(pDX, IDC_PASSWORD, m_Password);
  36.     DDX_Text(pDX, IDC_USERNAME, m_UserName);
  37.     //}}AFX_DATA_MAP
  38. }
  39.  
  40.  
  41. BEGIN_MESSAGE_MAP(CSessionPropertiesPasswordPage, CPropertyPage)
  42.     //{{AFX_MSG_MAP(CSessionPropertiesPasswordPage)
  43.         // NOTE: the ClassWizard will add message map macros here
  44.     //}}AFX_MSG_MAP
  45. END_MESSAGE_MAP()
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48. // CSessionPropertiesPasswordPage message handlers
  49.