Registriert seit: 5. Jan 2005
Ort: Stadthagen
9.454 Beiträge
Delphi 10 Seattle Enterprise
|
AW: System.Threading => mehrere Threads gleichzeitig ??
29. Sep 2015, 11:07
Richtiger wäre es mit folgender Änderung:
Delphi-Quellcode:
function TMainForm.CreateProc( const AID: string ): TProc;
begin
Result :=
procedure
begin
Log( AID + ' started' );
try
Sleep( 1000 );
finally
Log( AID + ' finished' );
end;
end;
end;
procedure TMainForm.Log( const AMsg: string );
begin
if csDestroying in ComponentState
then
Exit;
TThread.Synchronize( nil,
procedure
begin
ListBox1.ItemIndex := ListBox1.Items.Add( AMsg );
end );
end;
Kaum macht man's richtig - schon funktioniert's
Zertifikat: Sir Rufo (Fingerprint: ea 0a 4c 14 0d b6 3a a4 c1 c5 b9 dc 90 9d f0 e9 de 13 da 60)
|