Friday, April 17, 2009

Working with WinForm dataGridViews and QuickTest Pro

With Quick Test Pro I found the example below works the best when you want to select and click the cell.

' Select the cell row 0 column zero
SwfWindow("myForm").SwfTable("dataGridView1").SelectCell 0,0

' Click the cell row 0 column zero
SwfWindow("myForm").SwfTable("dataGridView1").ClickCell 0,0

No comments:

Post a Comment