fields.cpp
上传用户:biney012
上传日期:2022-05-09
资源大小:4592k
文件大小:1k
源码类别:

数据库系统

开发平台:

Visual C++

  1. // Machine generated IDispatch wrapper class(es) created by Microsoft Visual C++
  2. // NOTE: Do not modify the contents of this file.  If this class is regenerated by
  3. //  Microsoft Visual C++, your modifications will be overwritten.
  4. #include "stdafx.h"
  5. #include "fields.h"
  6. // Dispatch interfaces referenced by this interface
  7. #include "Field.h"
  8. /////////////////////////////////////////////////////////////////////////////
  9. // CFields properties
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CFields operations
  12. long CFields::GetCount()
  13. {
  14. long result;
  15. InvokeHelper(0x60020000, DISPATCH_PROPERTYGET, VT_I4, (void*)&result, NULL);
  16. return result;
  17. }
  18. void CFields::Refresh()
  19. {
  20. InvokeHelper(0x60020002, DISPATCH_METHOD, VT_EMPTY, NULL, NULL);
  21. }
  22. CField CFields::GetItem(const VARIANT& Index)
  23. {
  24. LPDISPATCH pDispatch;
  25. static BYTE parms[] =
  26. VTS_VARIANT;
  27. InvokeHelper(0x0, DISPATCH_PROPERTYGET, VT_DISPATCH, (void*)&pDispatch, parms,
  28. &Index);
  29. return CField(pDispatch);
  30. }
  31. void CFields::Append(LPCTSTR Name, long Type, long DefinedSize, long Attrib)
  32. {
  33. static BYTE parms[] =
  34. VTS_BSTR VTS_I4 VTS_I4 VTS_I4;
  35. InvokeHelper(0x60040000, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
  36.  Name, Type, DefinedSize, Attrib);
  37. }
  38. void CFields::Delete(const VARIANT& Index)
  39. {
  40. static BYTE parms[] =
  41. VTS_VARIANT;
  42. InvokeHelper(0x60040001, DISPATCH_METHOD, VT_EMPTY, NULL, parms,
  43.  &Index);
  44. }