Delphi 10.4 Events view not updating during debug

139 Views Asked by At

I want to use Events View more dynamically.

I use OutputDebugString(PChar(s) and want it to update the events view.

s := 'test ' + String(Datetimetostr(now));
OutputDebugString(PChar(s));

It works, but the events view does not update dynamically during debug.
Only after closing view and opening it again with Ctrl+alt+V i can see my outputlines after scrolling to the bottom og the view.

1

There are 1 best solutions below

2
On

If you need to scroll down to the bottom of the event view in order to see your latest events then it means that at some point in time you have disabled Scroll new event into view

So right click on your Events window and select Properties and then in the new opened window add check-mark at Scroll new event into view

Event Log Properties