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

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // mainfrm.h : Interface of the CMainFrame 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. class CMainFrame : public CFrameWnd
  20. {
  21. protected: // create from serialization only
  22.     CMainFrame();
  23.     DECLARE_DYNCREATE(CMainFrame)
  24.  
  25. // Attributes
  26. public:
  27.  
  28. // Operations
  29. public:
  30.  
  31. // Overrides
  32.     // ClassWizard generated virtual function overrides
  33.     //{{AFX_VIRTUAL(CMainFrame)
  34.     public:
  35.     virtual BOOL DestroyWindow();
  36.     protected:
  37.     virtual BOOL PreCreateWindow(CREATESTRUCT& cs);
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. public:
  42.     virtual ~CMainFrame();
  43.  
  44. // Generated message map functions
  45. protected:
  46.     CStatusBar  m_wndStatusBar;
  47.  
  48.     //{{AFX_MSG(CMainFrame)
  49.     afx_msg BOOL OnEraseBkgnd(CDC* pDC);
  50.     afx_msg int  OnCreate(LPCREATESTRUCT lpCreateStruct);
  51.     afx_msg void OnGetMinMaxInfo(MINMAXINFO FAR* lpMMI);
  52.     //}}AFX_MSG
  53.     DECLARE_MESSAGE_MAP()
  54. };
  55.  
  56. /////////////////////////////////////////////////////////////////////////////
  57.