home *** CD-ROM | disk | FTP | other *** search
/ DP Tool Club 19 / CD_ASCQ_19_010295.iso / vrac / dlgcbr.zip / ABOUTDLG.CPP next >
C/C++ Source or Header  |  1994-06-30  |  1KB  |  59 lines

  1. /*****************************************************************************
  2.   ABOUTDLG.CPP
  3.  
  4.   Purpose:  
  5.       Implements CAboutDlg, which displays the application About Box.
  6.  
  7.   Functions:
  8.     CAboutDlg::CAboutDlg()          -- constructor
  9.     CAboutDlg::DoDataExchange()     -- dialog data exchange/validation
  10.     CAboutDlg::OnInitDialog()        -- initialize dialog
  11.  
  12.   Development Team:
  13.       Mary Kirtland
  14.  
  15.   Written by Microsoft Product Support Services, Premier ISV Support
  16.   Copyright (c) 1994 Microsoft Corporation. All rights reserved.
  17. \****************************************************************************/
  18.  
  19. #include "stdafx.h"
  20. #include "resource.h"
  21. #include "aboutdlg.h"
  22.  
  23. #ifdef _DEBUG
  24.     #undef THIS_FILE
  25.     static char BASED_CODE THIS_FILE[] = __FILE__;
  26. #endif
  27.  
  28. /////////////////////////////////////////////////////////////////////////////
  29. // CAboutDlg dialog
  30.  
  31.  
  32. CAboutDlg::CAboutDlg(CWnd* pParent /*=NULL*/)
  33.     : CDialog(CAboutDlg::IDD, pParent)
  34. {
  35.     //{{AFX_DATA_INIT(CAboutDlg)
  36.     //}}AFX_DATA_INIT
  37. }
  38.  
  39.  
  40. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  41. {
  42.     CDialog::DoDataExchange(pDX);
  43.     //{{AFX_DATA_MAP(CAboutDlg)
  44.     //}}AFX_DATA_MAP
  45. }             
  46.  
  47. BOOL CAboutDlg::OnInitDialog()
  48. {
  49.     CDialog::OnInitDialog();
  50.     CenterWindow();
  51.     return TRUE;
  52. }
  53.  
  54. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  55.     //{{AFX_MSG_MAP(CAboutDlg)
  56.     //}}AFX_MSG_MAP
  57. END_MESSAGE_MAP()
  58.  
  59.