SimpleList.Add Method

The Add method adds an item to a SimpleList object.

Syntax

SimpleList.Add(Item)

Parameters

Item
The item to add to the SimpleList object.

Example

The following example adds the text string “Hello” to the list myList:

Call myList.Add("Hello")

© 1997-1998 Microsoft Corporation. All rights reserved.