rickyoswaldiow
Programmer
Good morning all. Today I am working on populating a ListView control (not to be confused with ListBox).
The original code is setup thus:
This works up to the .SubItems line is used, where it drops out with "Invalid Property Value".
The original code is setup thus:
Code:
dim lstItem as ListItem
lvwListView.ListItems.Clear
If Not(rsRecordSet.EOF and rsRecordSet.BOF) Then
rsRecordSet.MoveFirst
Do Until rsRecordSet.EOF
Set lstItem = lvwListView.ListItems.Add(, rsRecordSet("Record1"), Trim(rsRecordSet("Record2"))
mItem.SubItems(1) = Trim(rsRecordSet("Record3"))
mItem.SubItems(2) = Format(Trim(rsRecordSet("RecordDate")), gblDATEFORMAT)
mItem.SubItems(3) = Trim(rsRecordSet("Record4"))
rsRecordSet.MoveNext
Loop
End If
This works up to the .SubItems line is used, where it drops out with "Invalid Property Value".