主题:遍历list出的问题请高手指点
For itemp = 0 To List1.ListCount
s = List1.List(itemp)
If Mid(s, 1, InStr(s, ":") - 1) = Comb.Text Then
iCount = iCount + 1
End If
msgbox s
next
为什么会报 “s变量为空”?
而后面的msgbox 的显示结果是正常的?
s = List1.List(itemp)
If Mid(s, 1, InStr(s, ":") - 1) = Comb.Text Then
iCount = iCount + 1
End If
msgbox s
next
为什么会报 “s变量为空”?
而后面的msgbox 的显示结果是正常的?