home *** CD-ROM | disk | FTP | other *** search
/ Troubleshooting Netware Systems / CSTRIAL0196.BIN / attach / msj / v10n04 / multilin.exe / DATEFORM.H < prev    next >
C/C++ Source or Header  |  1995-04-01  |  991b  |  41 lines

  1. // dateform.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CDateFormat dialog
  6.  
  7. class CDateFormat : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CDateFormat(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CDateFormat)
  15.     enum { IDD = IDD_DATEFORM };
  16.     CListBox    m_DateFormats;
  17.     CString    m_CustomFormat;
  18.     CString    m_ExampleDate;
  19.     //}}AFX_DATA
  20.  
  21.  
  22. // Overrides
  23.     // ClassWizard generated virtual function overrides
  24.     //{{AFX_VIRTUAL(CDateFormat)
  25.     protected:
  26.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  27.     //}}AFX_VIRTUAL
  28.  
  29. // Implementation
  30. protected:
  31.     BOOL AppendDateFormat(DWORD dwFlags);    
  32.     void ShowSampleDate( CString& szDateFormat, DWORD dwDateFlags);
  33.     // Generated message map functions
  34.     //{{AFX_MSG(CDateFormat)
  35.     virtual BOOL OnInitDialog();
  36.     afx_msg void OnChangeCustom();
  37.     afx_msg void OnDblclkDateformats();
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.