问题标签 [output-window]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票
4 回答
1745 浏览

visual-studio - 我将构建输出框移到了它自己的窗口中。我如何将其移回?

我将输出框设置为显示在我的代码下方。我不小心把它从那里拉了出来,它变成了它自己的窗户。我可以关闭窗口并转到查看,单击输出,它回来了,仍然是一个窗口!我怎样才能把它放回去?

0 投票
1 回答
682 浏览

c++ - Visual Studio 2008 输出窗口停止工作

我在 VS 2008 中从事 C++ 项目已经有一段时间了。直到最近,在终止我的应用程序时,输出窗口会显示我是否有任何内存泄漏。然而,几天前我注意到它停止显示这些有价值的信息。我也尝试抛出一些 printf(),但输出窗口也没有显示。

我猜我在某处改变了偏好,但我似乎找不到它。现在所有输出显示的是它已加载/卸载的 dll。有任何想法吗?

谢谢,迈克

0 投票
1 回答
1465 浏览

visual-c++ - cout 在 Winform 应用程序上的位置

我正在尝试将 libusb 用于 WinForm 应用程序。

我使用了几个示例代码,它们使用大量标准输出流符号进行调试。

此代码将打印在 linux 或命令行应用程序的控制台上。但是对于 Winform 来说,这是怎么回事呢?我想知道是否可以设置我的 MSVC++ 项目,以便所有 cout 或 printf 调用都将打印到类似于 Console::WriteLine() 方法的输出窗口。

有什么建议么?

0 投票
3 回答
15634 浏览

c - 将调试信息发送到 Visual Studio“输出”窗口的简单方法

我在Visual Studio 2010中启动了一个空白项目来编写 C 应用程序。如何将调试信息发送到输出窗口(菜单Debug -> Windows -> Output)?有没有相对简单的方法来实现TRACEOutputDebugString类似的东西?

0 投票
1 回答
1585 浏览

visual-studio - 如何在 VS 输出窗口中显示 unicode 阿拉伯字符串?

我有一个阿拉伯语的 uni-code 字符串显示在输出窗口而不是控制台中,所以我只能使用 OutputDebugStringW,我调用 SetConsoleOutputCP(1256) 来设置阿拉伯语代码页,但它仍然只输出“????”。我该怎么办...

0 投票
2 回答
4295 浏览

visual-studio - Double click to go to source in Output Window

When you build a project in Visual Studio, the Output Window outputs the status of the build process, which included errors and warnings. Double clicking those lines will open up the file containing that error/warning in the editor.

Now, is it possible to get that functionality with output from Debug.WriteLine, or anything like that? So that when the Debug window outputs for example

I would be able to double click it and be taken to BufferClass.cs, line 45, since that was the location of the Debug.WriteLine call.

Is that possible, either through .net libraries, or through a Visual Studio Extension?

0 投票
4 回答
4256 浏览

java - Netbeans 7.2 中的输出窗口无法正确显示泰文符号

需要你的帮助。我有一个烦人的问题:在 Netbeans 7.2 输出窗口中无法漂亮地打印泰语符号:

System.out.println(...); 之后的输出 ??????????????????[TH_WORD]

如前所述,我更改了 netbeans.conf,但没有帮助;我将项目属性-> 源编码更改为 UTF-8,源看起来不错,源中的所有泰文符号都可以正确打印。但是如何更改 NB 输出窗口的设置呢?

Windows 7 64bit,Netbeans 7.2(我将 NB 运行为“C:\Program Files (x86)\NetBeans 7.2\bin\netbeans64.exe”--locale en_US)

0 投票
2 回答
1189 浏览

c# - System.Diagnostics.Debug 类是否有 TextWriter 接口,可与 Console.SetOut 一起使用?

是否有任何内置功能可以将 Console.WriteLine 调用重定向到 System.Diagnostic.Debug-calls?

我希望有这样的事情:

甚至可能:

0 投票
1 回答
215 浏览

vb.net - VB.NET 奇怪的输出消息“Uninit : Still Alive 1”

我在 DebugMode 中运行我的程序,然后通过关闭主窗体退出它。

在输出窗口中,我可以看到以下消息:

我想知道“Uninit : Still Alive 1”是什么意思。

有人知道吗???我总是很害怕在某个时间点发生意想不到的事情,而“还活着”的消息对我来说听起来并不乐观。

感谢您的帮助!

0 投票
1 回答
145 浏览

visual-studio - 如何在 vstudio 输出窗口中消除“MyApp.vshost.exe: Loaded some.dll”消息

是否可以消除类似于标题中的消息?我在 Visual Studio 输出窗口中收到太多“加载... .dll”行,我只想查看那些与我相关的内容(异常、跟踪)。

我的项目是一个 WPF 应用程序,我使用的是 VS2013,但我认为这无关紧要。