0
我們正在使用TestComplete來自動化寫在VB6中的桌面應用程序。如何使用Testcomplete獲取VB6中Apexgrid的行內容?
我們被困在使用WndClass獲取Apex網格的行內容TG60.ApexGirdOleDB32.20。
有some information in this link 但它是不夠的。我想根據其內容而不是其索引號來選擇行。
請問任何人都可以幫忙嗎?
我們正在使用TestComplete來自動化寫在VB6中的桌面應用程序。如何使用Testcomplete獲取VB6中Apexgrid的行內容?
我們被困在使用WndClass獲取Apex網格的行內容TG60.ApexGirdOleDB32.20。
有some information in this link 但它是不夠的。我想根據其內容而不是其索引號來選擇行。
請問任何人都可以幫忙嗎?
有一些本地VB對象屬性用於獲取所選列和行的單元格文本。
sub ClicktheRowUsingText(rowText, rowIndex)
Dim textfromCell, rowIndex, rowCount, i
rowCount = tgridNew.ApproxCount
for i=1 to rowCount-1
textfromCell = tgridNew.Columns.Item(0).CellText(rowIndex)
if textFromCell = rowText Then
'Call here the methods given in the above links
Exit for
End if
Next
End Sub