Forum Discussion
scambias
8 years agoContributor
Hi,
here is the code's lines trying to access the GetRowCount and wColumnCount property of the grid:
Dim grid
if (gridName <> "") Then
Execute ("set grid = " & gridName)
end if
dim rowCount, colCount, i, j
if not grid is nothing then
'rowCount = CInt(grid.wRowCount)
rowCount = CInt(grid.GetRowCount)
colCount = CInt(grid.wColumnCount)
end if
In the attachments you can find the screenshot of the error showed and the grid I'm trying to work with.
Thank you for the answer.