Re: ADOX - Import type library into Delphi 2007



Now I am see what you problem is. Just uncheck generate component wrappers
checkbox in import dialog. You don't need it as components, use it as is -
through interfaces. In MSDN you will find detailed development reference. To
instantinate root object Catalog you could use this code snippet:
function CreateCatalog(Source : TADOConnection) : _Catalog;
begin
Result := CoCatalog.Create;
Result.Set_ActiveConnection(ADOConnection.ConnectionObject);
end;


.