home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / database / bindenrl / enroldlg.cpp < prev    next >
C/C++ Source or Header  |  1998-03-26  |  1KB  |  43 lines

  1. // EnrolDlg.cpp : implementation file
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #include "stdafx.h"
  14. #include "BindEnrl.h"
  15. #include "EnrolDlg.h"
  16.  
  17. #ifdef _DEBUG
  18. #define new DEBUG_NEW
  19. #undef THIS_FILE
  20. static char THIS_FILE[] = __FILE__;
  21. #endif
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24. // CAboutDlg dialog used for App About
  25. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  26. {
  27.     //{{AFX_DATA_INIT(CAboutDlg)
  28.     //}}AFX_DATA_INIT
  29. }
  30.  
  31. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  32. {
  33.     CDialog::DoDataExchange(pDX);
  34.     //{{AFX_DATA_MAP(CAboutDlg)
  35.     //}}AFX_DATA_MAP
  36. }
  37.  
  38. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  39.     //{{AFX_MSG_MAP(CAboutDlg)
  40.         // No message handlers
  41.     //}}AFX_MSG_MAP
  42. END_MESSAGE_MAP()
  43.