DB.ODL
上传用户:bangxh
上传日期:2007-01-31
资源大小:42235k
文件大小:2k
源码类别:

Windows编程

开发平台:

Visual C++

  1. // db.odl : type library source for OLE Custom Control project.
  2. // This file will be processed by the Make Type Library (mktyplib) tool to
  3. // produce the type library (db.tlb) that will become a resource in
  4. // db.ocx.
  5. // This is a part of the Microsoft Foundation Classes C++ library.
  6. // Copyright (C) 1992-1997 Microsoft Corporation
  7. // All rights reserved.
  8. //
  9. // This source code is only intended as a supplement to the
  10. // Microsoft Foundation Classes Reference and the
  11. // Books Online documentation provided with the library.
  12. // See these sources for detailed information regarding the
  13. // Microsoft Foundation Classes product.
  14. #include <olectl.h>
  15. [ uuid(EFF01748-7825-101B-8375-00AA00373FB9), version(1.0),
  16.   helpstring("Db OLE Custom Control module"), control ]
  17. library DbLib
  18. {
  19. importlib(STDOLE_TLB);
  20. importlib(STDTYPE_TLB);
  21. //  Primary dispatch interface for CDbCtrl
  22. [ uuid(EFF01746-7825-101B-8375-00AA00373FB9),
  23.   helpstring("Dispatch interface for Db Control"), hidden ]
  24. dispinterface _DDb
  25. {
  26. properties:
  27. // NOTE - ClassWizard will maintain property information here.
  28. //    Use extreme caution when editing this section.
  29. //{{AFX_ODL_PROP(CDbCtrl)
  30. [id(2)] BSTR DataSource;
  31. [id(3)] BSTR TableName;
  32. [id(4)] BSTR ColumnName;
  33. [id(5)] BSTR UserName;
  34. [id(6)] BSTR Password;
  35. [id(1)] BSTR Query;
  36. //}}AFX_ODL_PROP
  37. methods:
  38. // NOTE - ClassWizard will maintain method information here.
  39. //    Use extreme caution when editing this section.
  40. //{{AFX_ODL_METHOD(CDbCtrl)
  41. [id(7)] void ReQuery();
  42. //}}AFX_ODL_METHOD
  43. [id(DISPID_ABOUTBOX)] void AboutBox();
  44. };
  45. //  Event dispatch interface for CDbCtrl
  46. [ uuid(EFF01747-7825-101B-8375-00AA00373FB9),
  47.   helpstring("Event interface for Db Control") ]
  48. dispinterface _DDbEvents
  49. {
  50. properties:
  51. //  Event interface has no properties
  52. methods:
  53. // NOTE - ClassWizard will maintain event information here.
  54. //    Use extreme caution when editing this section.
  55. //{{AFX_ODL_EVENT(CDbCtrl)
  56. //}}AFX_ODL_EVENT
  57. };
  58. //  Class information for CDbCtrl
  59. [ uuid(EFF01745-7825-101B-8375-00AA00373FB9),
  60.   helpstring("Db Control"), control ]
  61. coclass Db
  62. {
  63. [default] dispinterface _DDb;
  64. [default, source] dispinterface _DDbEvents;
  65. };
  66. //{{AFX_APPEND_ODL}}
  67. };