Set cGetDomainClassification = cDomainClassifications
End Function
Is it possible to use same syntax in QV macro ?
Second, I am using this method in this call:
Set cDomainClassifications = cGetDomainClassification()
lI = 1
Do
sType = cDomainClassifications(lI)(0)
' do things
lI = lI + 1
Loop While ('some condition)
in line sType = cDomainClassifications(lI)(0) is it correct that we look for the element (a list) of the collection with key II, and take the first element of this list ? Is it the same in QV VBScript ?