Board index » delphi » TkbmMemTable Bug?
Ryan Baldwin
![]() Delphi Developer |
Tue, 17 Feb 2004 02:15:48 GMT
TkbmMemTable Bug?
Has anybody else experienced problems setting a range in a TkbmMemTable and
going through it till Eof? For some reason I get caught in a continuous loop and I can't for the life of me find out why... What will happen is I will go through the first few records ( usually all records until 2nd, 3rd, or 4th last record) and all of a sudden it will stop working and go all wizzy in an infinite loop. Here's the code, I don't think it's anything I'm doing because the code works perfect in TClientDataSets and TTables... and since TkbmMemTable is a descendant from TDataSet as well, I'd be quite surprised. Anyways, here goes: with FleetDisplay do While not Eof do Output( Stream, PID_RECORDATA, SizeOf( byte ) ); Edit(); end; CancelRange(); Any ideas? - ryan |