Quote Originally Posted by Fazi
The first column value should be
Code:
AuditInfoID = lvwAudit.ListItems(1).text
or
Code:
AuditInfoID = lvwAudit.ListItems(1)
(1) is the listitem 1.

Thanks! that works for the first column but when I try to get the value for the second column with

Code:
AuditCheckDt = lvwAudit.ListItems(2).Text
It says "Index out of bounds". How do I get the values from the other columns?