home *** CD-ROM | disk | FTP | other *** search
/ Sams Cobol 24 Hours / Sams_Cobol_24_Hours.iso / Cobol32 / CRW / 32BIT / DISK6 / MAINFRM.H_ / MAINFRM.H
C/C++ Source or Header  |  1995-08-29  |  2KB  |  80 lines

  1. // mainfrm.h : interface of the CMainFrame class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CMainFrame : public CFrameWnd
  6. {
  7. protected: // create from serialization only
  8.     CMainFrame();
  9.     DECLARE_DYNCREATE(CMainFrame)
  10.  
  11. // Attributes
  12. public:
  13.  
  14. // Operations
  15. public:
  16.  
  17. // Overrides
  18.     // ClassWizard generated virtual function overrides
  19.     //{{AFX_VIRTUAL(CMainFrame)
  20.     //}}AFX_VIRTUAL
  21.  
  22. // Implementation
  23. public:
  24.     virtual ~CMainFrame();
  25. #ifdef _DEBUG
  26.     virtual void AssertValid() const;
  27.     virtual void Dump(CDumpContext& dc) const;
  28. #endif
  29.  
  30. protected:  // control bar embedded members
  31.     CStatusBar  m_wndStatusBar;
  32.     CToolBar    m_wndToolBar;
  33.  
  34. // Generated message map functions
  35. protected:
  36.     //{{AFX_MSG(CMainFrame)
  37.     afx_msg int OnCreate(LPCREATESTRUCT lpCreateStruct);
  38.         // NOTE - the ClassWizard will add and remove member functions here.
  39.         //    DO NOT EDIT what you see in these blocks of generated code!
  40.     //}}AFX_MSG
  41.     DECLARE_MESSAGE_MAP()
  42. };
  43.  
  44. /////////////////////////////////////////////////////////////////////////////
  45. /////////////////////////////////////////////////////////////////////////////
  46. // CRecSelectDlg dialog
  47.  
  48. class CRecSelectDlg : public CDialog
  49. {
  50. // Construction
  51. public:
  52.     CRecSelectDlg(CWnd* pParent = NULL);   // standard constructor
  53.  
  54. // Dialog Data
  55.     //{{AFX_DATA(CRecSelectDlg)
  56.     enum { IDD = IDD_SELFORMULA };
  57.     CString    m_Selection_Formula;
  58.     //}}AFX_DATA
  59.  
  60.  
  61. // Overrides
  62.     // ClassWizard generated virtual function overrides
  63.     //{{AFX_VIRTUAL(CRecSelectDlg)
  64.     public:
  65.     virtual int DoModal();
  66.     protected:
  67.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  68.     //}}AFX_VIRTUAL
  69.  
  70. // Implementation
  71. protected:
  72.  
  73.     // Generated message map functions
  74.     //{{AFX_MSG(CRecSelectDlg)
  75.     afx_msg void OnSet();
  76.     afx_msg void OnOk();
  77.     //}}AFX_MSG
  78.     DECLARE_MESSAGE_MAP()
  79. };
  80.