Forum Discussion

techgirlbb's avatar
techgirlbb
Contributor
7 years ago
Solved

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 selected.  Tried scripting to get the values (rowcount, colunmindex...) but didn't work.

Issue 1:Not sure how to capture the each column values

 

I tried using set variable operation - also didn't work because of not able to select the object property value.

 

share your thoughts.

 

Please see the attachment with  captured list of properties and object. 

 

 

  • 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).

1 Reply

  • tristaanogre's avatar
    tristaanogre
    Esteemed Contributor

    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).