Hi,
> Same as OutputDebugString() works in delphi I suppose.
> Yes, I miss this too.
I never used OutputDebugString() in Delphi but I guess the main challenge is
to detect if Lazarus IDE is present while the program is running. The rest
should be easy.
procedure OutputDebugString(Msg: string);
begin
if <IDE_Is_Present> then
IDEMsgIntf.IDEMessagesWindow.AddMsg(Msg,'',-1);
end;
So, how to test it?
Regards,
Juha
--
_______________________________________________
Lazarus mailing list
[email protected]
http://lists.lazarus.freepascal.org/mailman/listinfo/lazarus