Forum Discussion
Well, here's the question... do you need to double click on the cell? Or do you need to double click on some component in the content of the cell? I'm guessing the latter? In which case, once you find the cell you're looking for, perhaps you should do something like
var control = cellName.FindChild('ObjectType', 'link', 1)
if (control.Exists) control.DblClick()
Thanks for the response Robert,
I have the option to double click the row (or cells within the row) or single click the link within a particular cell. All give the same result. I actually did try your recommendation before with several different variations of the cell and the link within the cell. Sorry, I wasn't explicit about that when mentioning the use of the findChild method.
Just to be sure, I gave it another shot (your example was more concise than mine). Sadly, I get the same delayed action. I threw in a log message before clicking the control - it found it right away.
Russ