Forum Discussion
adrian_neagu
12 years agoNew Contributor
Hello,
I managed to find a solution here:
http://support.smartbear.com/viewarticle/24752/
But there is small error in your code:
It should be:
After this i used a .FocusItem call to the j item that was desired and then a .DblClickItem with the same j value.
Thanks anyway for the help
I managed to find a solution here:
http://support.smartbear.com/viewarticle/24752/
But there is small error in your code:
for (var j = 0; i < listView.wItemCount; i++)
It should be:
for (var j = 0; j < listView.wItemCount; j++)
After this i used a .FocusItem call to the j item that was desired and then a .DblClickItem with the same j value.
Thanks anyway for the help