ActiveX 控件的调试输出
我正在开发一个 ActiveX 控件,我想像其他控件一样将一些调试输出扔到 tstcon32 中的控制台区域。哪个系统调用正在执行此操作?
标准输出似乎不是这样
I'm developing an ActiveX control and I'd like to throw some debug output to the console area in tstcon32 like other controls are doing. What system call is doing that?
stdout doesn't seem to be it
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您在考虑 ATLTRACE2 吗?
“根据指示的标志和级别向输出设备(例如调试器窗口)报告警告。”
Are you thinking of ATLTRACE2 ?
"Reports warnings to an output device, such as the debugger window, according to the indicated flags and levels."
最有可能的是它使用OutputDebugString:http://msdn。 microsoft.com/en-us/library/aa363362%28VS.85%29.aspx
Most likely it's using OutputDebugString: http://msdn.microsoft.com/en-us/library/aa363362%28VS.85%29.aspx