...
...
Dim lst_This As List
'*****************
'THIS returns an 'array expected' error:
lst_This = GetThisList()
'*****************
...
...
End Sub
Sub GetThisList() As List
Dim lst_ThisList As List
lst_ThisList.AddAll( Array As String( "a", "b", "c", "d", "e" ))
Return lst_ThisList
End Sub
(Sorry, I forgot how to format code snippets on the forum, again)
...
Dim lst_This As List
'*****************
'THIS returns an 'array expected' error:
lst_This = GetThisList()
'*****************
...
...
End Sub
Sub GetThisList() As List
Dim lst_ThisList As List
lst_ThisList.AddAll( Array As String( "a", "b", "c", "d", "e" ))
Return lst_ThisList
End Sub
(Sorry, I forgot how to format code snippets on the forum, again)