Dim intX, intY As Integer
intY = Nums.GetUpperBound(0)
For intX = 0 To intY
With Nums(intX)
If .strFtID = strID Then
‘calls various subs/functions to get results to show in listbox
listbox.Items.Add(String.Format(strFmt, "various titles」))
listbox.Items.Add(String.Format(strFmt, variable results))
End If
End With
Next
在此循環中,爲每個匹配添加了標題的列表框,但我只希望它添加一次。如果在整個循環搜索之後沒有匹配,我還想添加「不匹配」。在這個循環中有多個匹配,因此它不能放在其中或在「其他」之下。如何在涉及循環時將項目添加到列表框?
太棒了,非常感謝! – ihaveatoaster 2013-04-11 06:31:59