Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Delphi debug.print function? [duplicate]

Does Delphi have a function similar to debug.print in VB, and if it does, how does one access the immediate window? Thanks.

like image 440
user2378627 Avatar asked Feb 24 '26 23:02

user2378627


1 Answers

You can call the Windows API function OutputDebugString. Anything that is sent to that function appears in the Event Log window in the IDE (View | Debug Windows | Event Log).

like image 124
David Heffernan Avatar answered Feb 26 '26 18:02

David Heffernan