CatalogManager.Initialize

Ee811344.c++_on(en-US,CS.10).gifEe811344.vb_off(en-US,CS.10).gif

Use this method to initialize a CatalogManager object. This method should be called once before calling any other methods or properties.

Definition

Sub Initialize(strConfigString As String,fIsADOConnectionString As Boolean)

Parameters

strConfigString

A String that contains the configuration string.

fIsADOConnectionString

A Boolean that determines whether the strConfigString parameter refers to an ADO connection string or a site name. A value of True indicates an ADO connection string. A value of False indicates a site name.

Return Values

None.

Error Values

This method sets the Number property of the global Err object to S_OK (&H00000000) to indicate success and to either standard or custom COM error values to indicate failure. For more information about standard COM errors, see Standard COM Errors.

The following table shows the custom COM errors that this method can return.

Constant Value Description
E_CAT_CATMGR_ALREADY_INITIALIZED &H88980062 The CatalogManager objects was already initialized.

Additional information may be available using the global Err object. In particular, the Description property may contain a text description of the error.

Remarks

For more information about memory ownership issues related to COM property and method parameters, see Managing COM Parameter Memory.

Example

myCatalogManager.Initialize strConfigString, TRUE

See Also

CatalogManager Object


All rights reserved.