Mal ne kleine Nebenfrage:
Muss man die property FreeOnTerminate nicht noch setzen?
Delphi-Quellcode:
procedure TSound.TInit;
var
t:TSoundWihle;
begin
t:=TSoundWihle.Create(True);
t.onE:=onE;
t.Priority := tpLower;
t.OnTerminate := DoMyTerminate() // <---
t.FreeOnTerminate := True bzw. False; // <---
t.Resume;
end;
ist ist sie standardmäßig false?