home *** CD-ROM | disk | FTP | other *** search
/ Using Visual Basic 5 (Platinum Edition) / vb5.iso / ACTIVEX / SRDVID / DATA.1 / aboutbox.h < prev    next >
Encoding:
C/C++ Source or Header  |  1996-07-10  |  1.1 KB  |  42 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // AboutBox.h : Interface of the CAboutBox class
  4. //
  5. /////////////////////////////////////////////////////////////////////////////
  6. //
  7. //  (C) Copyright Black Diamond Consulting, Inc 1996. All rights reserved.
  8. //
  9. //    You have a royalty-free right to use, modify, reproduce and 
  10. //    distribute the Sample Files (and/or any modified version) in 
  11. //    any way you find useful, provided that you agree that Black 
  12. //    Diamond Consulting has no warranty obligations or liability
  13. //    for any Sample Application Files which are modified. 
  14. //
  15. //    Revision History:
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18.  
  19. #define __ABOUTBOX_H__
  20.  
  21. #include "resource.h"
  22.  
  23. class CAboutBox : public CDialog
  24. {
  25. public:
  26.     CAboutBox();
  27.  
  28. // Dialog Data
  29.     //{{AFX_DATA(CAboutBox)
  30.     enum { IDD = IDD_ABOUTBOX };
  31.     //}}AFX_DATA
  32.  
  33. // Implementation
  34. protected:
  35.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  36.     virtual BOOL OnInitDialog();
  37.     //{{AFX_MSG(CAboutBox)
  38.         // No message handlers
  39.     //}}AFX_MSG
  40.     DECLARE_MESSAGE_MAP()
  41. };
  42.