Как зациклить массив одновременно в VBA
Моя проблема после того, как
j
в петле сделано,
i
будет просто двигаться.
Я хочу запустить массив из двух циклов одновременно.
ReDim ArrayItems(Download_frm.ListBox1.ListCount)
ReDim ArrayItems1(Download_frm.accountb.ListCount)
For i = 1 To Download_frm.ListBox1.ListCount
Download_frm.ListBox1.ListIndex = i - 1
ArrayItems(i) = Download_frm.ListBox1.Text
MsgBox ArrayItems(i)
'myarray = ArrayItems(i)
For j = 1 To Download_frm.accountb.ListCount
Download_frm.accountb.ListIndex = j - 1
ArrayItems1(j) = Download_frm.accountb.Text
MsgBox ArrayItems1(j)
'MsgBox ArrayItems1(j)
accountli = ArrayItems1(j)
'MsgBox ArrayItems(i)
COCODELI = ArrayItems(i)
Next j
Next i