Private Sub remove(La As ListBox,Lb As ListBox)For i = 0 To La.ListCount - 1Lb.AddItem La.List(i)NextLa.ClearEnd Sub0 To La.ListCount - 1

来源:学生作业帮助网 编辑:六六作业网 时间:2024/06/04 02:23:18
PrivateSubremove(LaAsListBox,LbAsListBox)Fori=0ToLa.ListCount-1Lb.AddItemLa.List(i)NextLa.ClearEndSu

Private Sub remove(La As ListBox,Lb As ListBox)For i = 0 To La.ListCount - 1Lb.AddItem La.List(i)NextLa.ClearEnd Sub0 To La.ListCount - 1
Private Sub remove(La As ListBox,Lb As ListBox)
For i = 0 To La.ListCount - 1
Lb.AddItem La.List(i)
Next
La.Clear
End Sub
0 To La.ListCount - 1

Private Sub remove(La As ListBox,Lb As ListBox)For i = 0 To La.ListCount - 1Lb.AddItem La.List(i)NextLa.ClearEnd Sub0 To La.ListCount - 1
For i = 0 To La.ListCount - 1 这是一个for循环,循环La.ListCount次,最后一次i=La.ListCount - 1.