
*** ListView Items on one row - different columns
Quote:
>In the ListView, how can I show more than one field in a row ?? When I use the
>following:
>lvwSelectedItems.ListItems.Add, , "FieldName"
>I get only one string in the row, which is "FieldName". So, how can I make more
>than one item appear on one row ??
In design mode, add some more columns, then add them at run-time with
the following code:
Dim newNode as ListItem
Set newNode = lvwSelectedItems.ListItems.Add (, , "FieldName")
With newNode
.SubItems(1) = "I'm a column"
.SubItems(2) = "So am I"
End With
Regards
Jens