Добрый день подскажите как прописать ручками заголвки если у меня лист бокс формируется массивом
Код |
---|
For i = 1 To UBound(arr_Mass) If arr_Mass(i, 13) = "Открыт" Then ListBox1.AddItem arr_Mass(i, 1) ListBox1.List(Me.ListBox1.ListCount - 1, 1) = arr_Mass(i, 2) ListBox1.List(Me.ListBox1.ListCount - 1, 2) = arr_Mass(i, 6) ListBox1.List(Me.ListBox1.ListCount - 1, 3) = arr_Mass(i, 8) ListBox1.List(Me.ListBox1.ListCount - 1, 4) = arr_Mass(i, 9) End If Next |