Soweit ich das verstanden habe, musst Du synchronisieren. Ich schreibe mir innerhalb des Threads meine zu sonchronisierenden Routinen so:
Delphi-Quellcode:
Procedure TMyThread.SomeRoutineToSynchronize (aFoo, aBar : String);
Begin
fFoo := aFoo; // privates Feld des Threads, leider geht die
fBar := aBar; // Parameterübergabe an die zu synchronisierende Routine nur so.
Synchronize (DoSomeRoutineToSynchronize);
End;
Procedure TMyThread.DoSomeRoutineToSynchronize;
Begin
Form1.Label1.caption := fFoo + fBar;
End;