Hi allWhat is the equivalent in VB.net of VB6.GetItemString( 'For Next loop which iterates through the array populating colSelClasses
'This is for when I implement selecting multiple feature classes from the listbox....
For i = 0 To lstMergeFeatures.Items.Count - 1
If lstMergeFeatures.GetSelected(i) Then
strOID = VB6.GetItemString(lstMergeFeatures, i)
Exit For
End If
Next i