I have multithread application.
procedure TGridUpdater.Execute;
begin
inherited;
CodeSite.Send('Thread executed');
sp := ConnectionFactory.GetConnection.LoadStoredProc('rab_itemData');
sp.CreateParam('Tahun', ftInteger, sppdInput).Value := _form.tahun;
sp.Open;
Synchronize(DoProgress1);
sp.DataSet.First;
I := 0;
CodeSite.Send('Terminated value is ' + BoolToStr(Terminated)); //The terminated property is 'True' here. Why?
while (not Terminated) and (not sp.DataSet.Eof) do
begin
CodeSite.Send('Entering loop');
Synchronize(DoProgress);
I := I + 1;
sp.DataSet.Next;
end;
Synchronize(DoProgress2);
end;
Method to run thread
procedure TFRABData.RefreshDataset;
var
GridUpdater: TGridUpdater;
begin
GridUpdater := TGridUpdater.Create(True);
GridUpdater.OwnerForm := Self;
GridUpdater.Start;
CodeSite.Send('RefreshDataset executed');
GridUpdater.Free;
end;
RefreshDatasetis called, you will start another one and terminate the currently running one, what may take some time. And, you'll be updating the same progress... – TLama Sep 25 '12 at 6:58Executemethod execution. Then the only clean way how to finish it as soon as possible, is ask forTerminatedflag as much as you can and exit when it's True, but you will still wait for the long running operations (if they're not cancellable of course). That's why I disclaimed my single thread idea. – TLama Sep 25 '12 at 7:20