- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
I would like to be able to generate tracebacks (using TRACEBACKQQ) in an application that is compiled using /SUBSYSTEM:WINDOWS without having the traceback sent to a popup dialog (which is what currently happens). I'm using the FOR_DIAGNOSTIC_LOG_FILE variable to send the traceback to a file, which is what I want. But, it is also sent to a unwanted popup. Is there any way to disable this? I realize I can use /SUBSYSTEM:CONSOLE to eliminate the popup, but then I have an unwanted DOS console window.
Alternately, it would be nice to have the capability of retrieving the tracebackqq information as a string (maybe allow us to define a procedure that the message is sent to). That would be quite useful.
コピーされたリンク
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Set FOR_DISABLE_DIAGNOSTIC_DISPLAY to 1.
- 新着としてマーク
- ブックマーク
- 購読
- ミュート
- RSS フィードを購読する
- ハイライト
- 印刷
- 不適切なコンテンツを報告
Thanks! I never noticed that option before.