true dbgrid pro 6
I have the following code:
with truegrid
For i = 0 To .VisibleRows - 1
If .IsSelected(i) Then
If .Columns(9).Text = "Master" Then
iCount = iCount + 1
End If
End If
Next
end with
My selbookmarks count is correct. The DataMode for the Grid is 4.
The problem I have is that the IsSelected Method doesn't seem to work. It drops into the next test regardless of wether the row has been selected or not.
Help Please.
|