techgirlbb
7 years agoContributor
Desktop VB app_ Not able to identify column values using Object Spy
Hi In one of my desktop application,I need to verify couple of column values before and after modification. when I try to select the column value using Object Spy, whole table is getting select...
- 7 years ago
This is a ListView... so, it doesn't have rows, it has items. According to your screenshot, there is only one item but it has 14 columns.
Look at the wItem property... it has parameters. So, let's say you want to see what's in column 4 of that item. See what the value is of wItem(0, 3).