vorher ein
TDataSet.DisableControls;
und danach wieder
TDataSet.EnableControls;
Aber daran hatte Sir Rufo in seinem Beispielcode bereits gedacht.
Hi,
ja das mache ich auch bereits. Jedoch scheint das nicht zu helfen. Hier ein kurzer Auszug:
Code:
LBookmark := DataSet.GetBookmark;
DataSet.DisableControls;
try
while (not DataSet.Eof) and (not Result) do
begin
...
end;
if not Result then
DataSet.GotoBookmark(LBookmark);
finally
DataSet.EnableControls;
end;