FormatNumSet.cpp
上传用户:lqt88888
上传日期:2009-12-14
资源大小:905k
文件大小:1k
源码类别:

书籍源码

开发平台:

Visual C++

  1. // FormatNumSet.cpp : implementation of the CFormatNumSet class
  2. //
  3. #include "stdafx.h"
  4. #include "FormatNum.h"
  5. #include "FormatNumSet.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CFormatNumSet implementation
  13. IMPLEMENT_DYNAMIC(CFormatNumSet, CRecordset)
  14. CFormatNumSet::CFormatNumSet(CDatabase* pdb)
  15. : CRecordset(pdb)
  16. {
  17. //{{AFX_FIELD_INIT(CFormatNumSet)
  18. m_Number = 0;
  19. m_nFields = 1;
  20. //}}AFX_FIELD_INIT
  21. m_nDefaultType = snapshot;
  22. }
  23. CString CFormatNumSet::GetDefaultConnect()
  24. {
  25. return _T("ODBC;DSN=fmtnum");
  26. }
  27. CString CFormatNumSet::GetDefaultSQL()
  28. {
  29. return _T("[Table]");
  30. }
  31. void CFormatNumSet::DoFieldExchange(CFieldExchange* pFX)
  32. {
  33. //{{AFX_FIELD_MAP(CFormatNumSet)
  34. pFX->SetFieldType(CFieldExchange::outputColumn);
  35. RFX_Double(pFX, _T("[Number]"), m_Number);
  36. //}}AFX_FIELD_MAP
  37. }
  38. /////////////////////////////////////////////////////////////////////////////
  39. // CFormatNumSet diagnostics
  40. #ifdef _DEBUG
  41. void CFormatNumSet::AssertValid() const
  42. {
  43. CRecordset::AssertValid();
  44. }
  45. void CFormatNumSet::Dump(CDumpContext& dc) const
  46. {
  47. CRecordset::Dump(dc);
  48. }
  49. #endif //_DEBUG