MyCombo.h
上传用户:lj3531212
上传日期:2007-06-18
资源大小:346k
文件大小:2k
源码类别:

绘图程序

开发平台:

Visual C++

  1. #if !defined(AFX_MYCOMBO_H__377F89D8_FAE1_4692_9999_B382E0F80169__INCLUDED_)
  2. #define AFX_MYCOMBO_H__377F89D8_FAE1_4692_9999_B382E0F80169__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // MyCombo.h : header file
  7. //
  8. #include "string.h"
  9. /////////////////////////////////////////////////////////////////////////////
  10. // CMyCombo window
  11. class CMyCombo : public CComboBox
  12. {
  13. // Construction
  14. public:
  15. CMyCombo();
  16. // Attributes
  17. public:
  18. // Operations
  19. public:
  20.   BOOL IsNumber(CString str);
  21.   CString GetNumberStr(CString str);
  22. // Overrides
  23. // ClassWizard generated virtual function overrides
  24. //{{AFX_VIRTUAL(CMyCombo)
  25. public:
  26. virtual BOOL PreTranslateMessage(MSG* pMsg);
  27. //}}AFX_VIRTUAL
  28. // Implementation
  29. public:
  30. virtual ~CMyCombo();
  31. // Generated message map functions
  32. public:
  33. //{{AFX_MSG(CMyCombo)
  34. afx_msg void OnKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  35. afx_msg void OnKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
  36. afx_msg void OnSysKeyDown(UINT nChar, UINT nRepCnt, UINT nFlags);
  37. afx_msg void OnSysKeyUp(UINT nChar, UINT nRepCnt, UINT nFlags);
  38. afx_msg void OnChar(UINT nChar, UINT nRepCnt, UINT nFlags);
  39. afx_msg void OnEditchange();
  40. //}}AFX_MSG
  41. DECLARE_MESSAGE_MAP()
  42. };
  43. /////////////////////////////////////////////////////////////////////////////
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_MYCOMBO_H__377F89D8_FAE1_4692_9999_B382E0F80169__INCLUDED_)