This function inserts a new string in a multi string value. A MultiString value is like a list of strings.
MultiStringInsert (ValueName As String, StringIndex As Long, Value As String) As Long
Parameters
ValueName
[in] Name of the value to modify.
StringIndex
[in] Index in the list where to insert the new string.
If 1: insert at the beginning of the list;
If 2: insert after the first element;
If X, insert before the Xth element;
If Count+1: insert at the end of the listValue
[in] The new string value to insert.
Return Value
0: success
1: value name not accessible
2: value is not of type multi-string
4: invalid index