home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / DRAWCL.PAK / STATPAGE.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.0 KB  |  48 lines

  1. // statpage.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CStatPage dialog
  6.  
  7. class CStatPage : public CPropertyPage
  8. {
  9.         DECLARE_DYNCREATE(CStatPage)
  10.  
  11. // Construction
  12. public:
  13.         CStatPage();
  14.         ~CStatPage();
  15.  
  16. // Dialog Data
  17.         //{{AFX_DATA(CStatPage)
  18.     enum { IDD = IDD_STAT_PAGE };
  19.     CString    m_strSavedBy;
  20.     CString    m_strRevNum;
  21.     CString    m_strEditTime;
  22.     CString    m_strLastPrint;
  23.     CString    m_strCreateDate;
  24.     CString    m_strLastSave;
  25.     CString    m_strNumPages;
  26.     CString    m_strNumWords;
  27.     CString    m_strNumChars;
  28.     CString    m_strSecurity;
  29.     //}}AFX_DATA
  30.  
  31.  
  32. // Overrides
  33.     // ClassWizard generate virtual function overrides
  34.         //{{AFX_VIRTUAL(CStatPage)
  35.     protected:
  36.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  37.     //}}AFX_VIRTUAL
  38.  
  39. // Implementation
  40. protected:
  41.     // Generated message map functions
  42.         //{{AFX_MSG(CStatPage)
  43.         // NOTE: the ClassWizard will add member functions here
  44.     //}}AFX_MSG
  45.     DECLARE_MESSAGE_MAP()
  46.  
  47. };
  48.