Forum Discussion
Colin_McCrae
10 years agoCommunity Hero
Jeez! I'm half asleep today! Didn't notice it was in Basic view either ....
baxatob
10 years agoCommunity Hero
OK guys.
What do you think, if we add yassine table's class to Microsoft Controls -> WinForms -> DataGrid
Then we can try to run the following script:
function Main ()
{
var Grid, Col;
Grid = Aliases.yassineTableControlAlias;
for (Col = 0; Col < Grid.wColumnCount; Col++)
Log.Message ("Cell (0, " + Col + ") value: " +
Grid.wValue(0, Col).ToString().OleValue)
}
In the case of success we should receive values for the first row.
- Colin_McCrae10 years agoCommunity Hero
If that's the base class, then yeah, that should work.
But I have no idea if it is. Certainly wouldn't do any harm to try it.
But there are loads of different grid types out there. If it's not that one, who knows ......