Dim strTest(recordSet.Count)() As String
While index < recordSet.Count
strTest(index)(recordset.item(index).getvalue(0).tostring,
recordset.item(index).getvalue(0).tostring,
recordset.item(index).getvalue(0).tostring)
index +=1
End While
Затем, как только массив, который я заполнил выше, мне нужно найти, если другая переменная содержится во втором измерении второй пары, содержит значение моей переменной, как это.
if strTest.Contains(someVariable) then
extract the index and get the other two values in the array
end if
так в принципе, как мне выполнить второй блок кода здесь.