Тема: Массив данных
Наверное я неудачно сделала предыдущую тему.
Вот вроде кусочек программы который шарит по массиву.
Помогите пожалуйста отобрать по нескольким критериям блоки:
Private Function Attr_To_Specif(Blobj)
'Dim A As Variant
Dim attr, tempmass(0 To 5)
Dim i As Integer, AttrDin
For i = 0 To 5: tempmass(i) = "Íåò äàííûõ": Next i
For Each attr In Blobj.GetAttributes
Select Case attr.TagString
Case "MARKA"
tempmass(0) = attr.TextString = Label3
Case "NAIMENOVANIE"
tempmass(1) = attr.TextString
Case "OTVETVLENIYA"
tempmass(2) = attr.TextString
Case "OBOZNACHENIE"
tempmass(3) = attr.TextString
Case "N"
tempmass(4) = attr.TextString
End Select
Next
AttrDin = Blobj.GetDynamicBlockProperties
For Each attr In AttrDin
If attr.PropertyName = "Âèäèìîñòü" Then
tempmass(5) = attr.Value
End If
Next
Attr_To_Specif = tempmass
End Function