home *** CD-ROM | disk | FTP | other *** search
/ HTBasic 9.3 / HTBasic 9.3.iso / 93win / data1.cab / DLL_Toolkit / Source / HTBCalendar / ButtonControl.h < prev    next >
Encoding:
C/C++ Source or Header  |  2005-03-02  |  1.4 KB  |  54 lines

  1. /**********************************************
  2. HTBCALENDAR.DLL
  3. TransEra Corporation 1999.
  4. This is the source for the HTBCalendar Dll.
  5.  
  6. ***********************************************/
  7.  
  8. #if !defined(AFX_BUTTONCONTROL_H__9855D0F9_6AF5_11D3_8BBC_00105AC66D91__INCLUDED_)
  9. #define AFX_BUTTONCONTROL_H__9855D0F9_6AF5_11D3_8BBC_00105AC66D91__INCLUDED_
  10.  
  11. #if _MSC_VER > 1000
  12. #pragma once
  13. #endif // _MSC_VER > 1000
  14. // ButtonControl.h : header file
  15. //
  16.  
  17. /////////////////////////////////////////////////////////////////////////////
  18. // ButtonControl dialog
  19.  
  20. class ButtonControl : public CDialog
  21. {
  22. // Construction
  23. public:
  24.     ButtonControl(CWnd* pParent = NULL);   // standard constructor
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(ButtonControl)
  28.     enum { IDD = IDD_DIALOG1 };
  29.     CYMSelector m_ButtonControl;
  30.     //}}AFX_DATA
  31.  
  32.  
  33. // Overrides
  34.     // ClassWizard generated virtual function overrides
  35.     //{{AFX_VIRTUAL(ButtonControl)
  36.     protected:
  37.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  38.     //}}AFX_VIRTUAL
  39.  
  40. // Implementation
  41. protected:
  42.  
  43.     // Generated message map functions
  44.     //{{AFX_MSG(ButtonControl)
  45.         // NOTE: the ClassWizard will add member functions here
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. //{{AFX_INSERT_LOCATION}}
  51. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  52.  
  53. #endif // !defined(AFX_BUTTONCONTROL_H__9855D0F9_6AF5_11D3_8BBC_00105AC66D91__INCLUDED_)
  54.