home *** CD-ROM | disk | FTP | other *** search
/ Programming Tool Box / SIMS_2.iso / vb_tools / vbxstd12 / combodem.h_ / COMBODEM.H
C/C++ Source or Header  |  1994-08-23  |  699b  |  31 lines

  1. // combodem.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CComboDemo dialog
  6.  
  7. class CComboDemo : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CComboDemo(CWnd* pParent = NULL);    // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CComboDemo)
  15.     enum { IDD = IDD_COMBO };
  16.         // NOTE: the ClassWizard will add data members here
  17.     //}}AFX_DATA
  18.  
  19. // Implementation
  20. protected:
  21.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  22.  
  23.     // Generated message map functions
  24.     //{{AFX_MSG(CComboDemo)
  25.     afx_msg void OnDestroy();
  26.     virtual BOOL OnInitDialog();
  27.     afx_msg void OnHelp();
  28.     //}}AFX_MSG
  29.     DECLARE_MESSAGE_MAP()
  30. };
  31.