Board index » delphi » Print to Message Window Like MFC TRACE()

Print to Message Window Like MFC TRACE()

All,

I'm drawing a blank.  I want to print a message like the MFC TRACE().
I don't want to print it to the event log. How do you print messages
to the bottom message window in Delphi?

Thanks,

RB

 

Re:Print to Message Window Like MFC TRACE()


Quote
"Rich" <thunderguyri...@yahoo.com> wrote in message news:3ba0f952.0107171100.4465e8fd@posting.google.com...
> All,

> I'm drawing a blank.  I want to print a message like the MFC TRACE().
> I don't want to print it to the event log. How do you print messages
> to the bottom message window in Delphi?

why not the event log??

open the event log window and drag it into the message area
depending on where you drop it this will create a tabbed or split window
now the event log is in the bottom message window ;-)

OutputDebugString('a string');

Other Threads