I’ve got a bunch of code that is running in a while loop that changes the UI in every loop. Things like the Width
of a TWebPanel
and the Position
of a TWebProgressBar
.
Normally in VCL and FMX, you would call Application.ProcessMessages()
in the loop to update the UI, but it doesn’t seem like Application.ProcessMessages
is available.
So now, only once the entire loop finishes, then the UI is updated.
Calling Application.ProcessMessages()
gives the following error:
[Error] identifier not found “ProcessMessages”
What is the equivalent to Application.ProcessMessages
in TMS WEB Core? How can I update the UI in a loop?