K
Kenneth
Dim iNr(selectedItems.Count - 1) As System.Int32
Dim i As System.Int16 = -1
For Each Item In selectedItems
i += CShort(1)
iNr(i) = CInt(Item.Text)
Next
or is there a better one
I dont like the i counter at all
//Kenneth
Dim i As System.Int16 = -1
For Each Item In selectedItems
i += CShort(1)
iNr(i) = CInt(Item.Text)
Next
or is there a better one
I dont like the i counter at all
//Kenneth