Visual Basic Concepts
The MyData component is an ActiveX DLL that acts as a data source. In this example, we'll use it to provide data through an OLE DB Simple Provider — it could just as easily be used as an ODBC or OLE DB data source. First we'll need to add another project to the AXData project group.
Note This topic is part of a series that walks you through creating sample data source components. It begins with the topic Creating Data Sources.
To add a test project to the project group
Important Do not click Open Project or New Project, as these will close your control project.
Property | Setting |
Project Description | Sample OLE DB Simple Provider Component |
Reference | Purpose |
Microsoft Data Source Interfaces | Allows the component to act as a data source. |
Microsoft OLE DB Simple Provider 1.5 Library | Used to access data sources through the OLE DB Simple Provider interface. |
OLE DB Errors Type Library | Provides error messages. |
In the next step, we'll create a class that implements the OLE DB Simple Provider interface.
This topic is part of a series that walks you through creating sample ActiveX data sources.
To | See |
Go to the next step | Creating the MyOSPObject Class |
Start from the beginning | Creating Data Sources |