method AddStrings(StringList: Object)
Available for Drop-Down Lists. Adds stringlist of items to the end of the list.
AddStrings method syntax has these named arguments:
Parameter |
Description |
|---|---|
StringList |
Required. The stringlist of items to be added to the end of the drop-down list. |
For example:
Dim StringList as Object
StringList = CreateObject("Accredo.StringList")
StringList.Add("One")
StringList.Add("Two")
StringList.Add("Three")
StringList.Add("Four")
StringList.Add("Five")
eSource.AddStrings(StringList)