Thanks
On Thu, 10 Jul 2003 17:47:39 +0200, "Armin Zingler"
<(E-Mail Removed)> wrote:
><(E-Mail Removed)> schrieb
>> I have the following code for a 3 column listview:
>>
>> intNumItemsSelected = lstPieceMark.SelectedItems.Count
>>
>> For intCount = 0 To intNumItemsSelected - 1
>> strPieceMark = lstPieceMark.SelectedItems.Item(intCount).Text
>> Next
>>
>> This returns the data in the first column. How do I get the data
>> in the next two columns also?
>
>
>Each Item has a SubItems property.
>=> lstPieceMark.SelectedItems.Item(intCount).SubItems
|