ListManager.SetDesc

Ee784567.c++_on(en-US,CS.10).gifEe784567.vb_off(en-US,CS.10).gif

Use this method to provide a new description for a list.

Definition

Sub SetDesc(listID As Variant,newListDesc As String)

Parameters

listID

A Variant that specifies the ID or name of the list.

newListDesc

A String that contains the description to be associated with the list.

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_LM_LIST_BUSY &H8C400008 The specified list is currently busy with another operation.
E_LM_LIST_IN_FAILED_STATE &H8C40001D The specified list is in a FAILED state and may not be used for the operation.
E_LM_LIST_NOT_FOUND &H8C400006 The specified list does not exist.
E_LM_SQLERROR &H8C400003 Error while executing SQL/ADO operation.
OLE_E_BLANK &H80040007 The ListManager object has not been properly initialized.

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

Example

oListManager.SetDesc(listID, newListDesc)

See Also

ListManager Object


All rights reserved.