Subject Cursor.RecordCount
Author guido.klapperich@t-online.de
When I open a IB_Cursor, I get only 6 rows, when I go to the last
record, but Recordcount has the value 8. The problem is, that I walk
through the Cursor like this:
Cursor.APIFirst;
for i:=1 to Cursor.RecordCount do
begin
TreeView.Items.AddChild(Node,Cursor.Fields[0].AsString);
Cursor.APINext;
end;

There are only 6 rows, but RecordCount is 8. Any ideas?


Guido.