我想OutputDebugString()
在我的应用程序中使用,然后可以选择在现场部署应用程序时在单独的查看器中显示它。
也就是说,我不想更改标志并重建我的 .exe 来打开和关闭调试。
谷歌搜索,似乎DebugView应该处理这个问题,但它和TraceTool都没有显示此代码的任何输出。
unit Unit1;
interface
uses
Winapi.Windows, Winapi.Messages, System.SysUtils, System.Variants, System.Classes, Vcl.Graphics,
Vcl.Controls, Vcl.Forms, Vcl.Dialogs, Vcl.StdCtrls;
type
TForm1 = class(TForm)
procedure FormCreate(Sender: TObject);
private
{ Private declarations }
public
{ Public declarations }
end;
var
Form1: TForm1;
implementation
{$R *.dfm}
procedure TForm1.FormCreate(Sender: TObject);
begin
OutputDebugString(PChar('Hello, wurld'));
end;
end.
我已阅读文档,但无济于事,并且看到其他人也遇到过类似的问题,但尚未发布解决方案。
有解决办法吗?