NumberEdit.cpp
上传用户:latoyin
上传日期:2017-10-19
资源大小:2882k
文件大小:1k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // NumberEdit.cpp : implementation file
  2. //
  3. #include "stdafx.h"
  4. #include "Equipment.h"
  5. #include "NumberEdit.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CNumberEdit
  13. CNumberEdit::CNumberEdit()
  14. {
  15. }
  16. CNumberEdit::~CNumberEdit()
  17. {
  18. }
  19. BEGIN_MESSAGE_MAP(CNumberEdit, CEdit)
  20. //{{AFX_MSG_MAP(CNumberEdit)
  21. ON_WM_CHAR()
  22. //}}AFX_MSG_MAP
  23. END_MESSAGE_MAP()
  24. /////////////////////////////////////////////////////////////////////////////
  25. // CNumberEdit message handlers
  26. void CNumberEdit::OnChar(UINT nChar, UINT nRepCnt, UINT nFlags) 
  27. {
  28. if ((TCHAR)nChar !=8) //8为退格键
  29. if (((TCHAR)nChar <46|(TCHAR)nChar >57))
  30. return;
  31. CEdit::OnChar(nChar, nRepCnt, nFlags);
  32. }