(04-12-2020, Saat: 17:04)RAD Coder Adlı Kullanıcıdan Alıntı: You can use the following workaround with Delphi 10.4.
TThread.CreateAnonymousThread( procedure begin TAnimator.AnimateFloat(Arc1, 'EndAngle', 360, 1.3); TThread.Sleep(13 * 100); TAnimator.AnimateFloat(Arc1, 'EndAngle', 0, 1.3); end).Start;
Thanks
But I need to wait in the main thread
I have a CriticalSection and I want the main thread to wait for the end

