How to get the row content of an Apexgrid in VB6 using Testcomplete? -


we using testcomplete automate desktop application written in vb6.

we stuck in getting row content of apex grid wndclass tg60.apexgirdoledb32.20.

there some information in link not sufficient. select row based on content instead of index number.

please can help?

there native vb object properties used cell text of selected column , row.

sub clicktherowusingtext(rowtext, rowindex)     dim textfromcell, rowindex, rowcount,     rowcount = tgridnew.approxcount     i=1 rowcount-1         textfromcell = tgridnew.columns.item(0).celltext(rowindex)             if textfromcell = rowtext                 'call here methods given in above links                 exit             end if     next end sub 

Comments

Popular posts from this blog

java - Static nested class instance -

c# - Bluetooth LE CanUpdate Characteristic property -

JavaScript - Replace variable from string in all occurrences -