NumericEdit.h
上传用户:zhuqijet
上传日期:2007-01-04
资源大小:138k
文件大小:1k
源码类别:

驱动编程

开发平台:

Visual C++

  1. // NumericEdit.h : header file
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4. // NumericEdit window
  5. class CNumericEdit : public CEdit
  6. {
  7. // Construction
  8. public:
  9. CNumericEdit();
  10. CNumericEdit(LPCTSTR fmt);
  11. void SetWindowText(int val, LPCTSTR fmt = NULL);
  12. int GetWindowInt();
  13. void Blank();
  14. // Attributes
  15. public:
  16. // Operations
  17. public:
  18. // Overrides
  19. // ClassWizard generated virtual function overrides
  20. //{{AFX_VIRTUAL(CNumericEdit)
  21. //}}AFX_VIRTUAL
  22. // Implementation
  23. public:
  24. virtual ~CNumericEdit();
  25. // Generated message map functions
  26. protected:
  27. LPCTSTR deffmt;
  28. //{{AFX_MSG(CNumericEdit)
  29. // NOTE - the ClassWizard will add and remove member functions here.
  30. //}}AFX_MSG
  31. DECLARE_MESSAGE_MAP()
  32. };
  33. /////////////////////////////////////////////////////////////////////////////