我的问题是在j
循环完成后,i
意志就会移动。
我想同时运行 2 个循环数组。
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