I'm new at using ListView. The following returns an Invalid Property Value message
What am I doing wrong?Code:.Item(1).SubItems(ColumnCounter + 1) = NewData(ColumnCounter)
Printable View
I'm new at using ListView. The following returns an Invalid Property Value message
What am I doing wrong?Code:.Item(1).SubItems(ColumnCounter + 1) = NewData(ColumnCounter)
Either NewValue doesn't return a string or something, that can to transformed to a string, like a number.
Or the columncounter variable contains a number, that is too high. The first subitem of a given item has index 1.
Hope this helps
Thanks AIS_DK - it was a problem with the columncounter being too high.