English 中文(简体)
C+++ 不允许显示命令提示
原标题:C++ disallow command prompt from displaying

是否有我可以做的任何事情可以确保 shell/ command 提示在我运行 C++ 程序时不会出现 。 它本该是一个背景程序 。 如果显示它是因为它很快关闭, 我更希望它不会显示, 程序将会在窗口 xp/ vista/7 OS 上运行 。

最佳回答

配置您的编译器或链接,将您的程序标记为 GUI 应用程序 。

Window 识别两个主要类型的程序 : GUI 和 控制台 。 如果 EXE 信头被标记为控制台程序, 那么操作系统会在执行它之前创建一个控制台窗口 。 否则, 它不会 。 这不是您在运行时可以控制的东西; 您需要在连接时间设置它 。 ( 您可以调用 ShowWindow (Get ConsoelWindow (), SW_HIDE) < / code > 来尝试在运行时控制它, 但这并不阻止窗口在运行时闪烁, 但它不会防止窗口再次闪烁 。 此外, 如果您的程序与另一个程序共享控制台, 如 cmd. exe, 那么您就会只隐藏用户命令- prompt 窗口!) 即使您的程序没有实际的 GUUI, 您仍然需要这种模式来避免为您创建控制台窗口 。

如果您在视觉工作室重新启动一个新工程, 请选择“ Win32 Console application” 选项。 如果您已经有工程, 那么在您的工程配置属性中, 请找到“ Linker/ System” 部分的“ 子系统” 设置, 并将其设置为“ Console ” 。 这使链接使用 < code>/ sub system: console 选项。 如果您重新使用 Mingw, 请使用 < code>- Wl,- sub system, windowows 选项 。

问题回答

听起来你想要创建一个 Windows 服务, 而不是命令行工具。 这就是服务存在的原因。 长期运行的背景任务不需要用户互动 。 < a href=" http://www. codeproject. com/ articles/16488/ A- Windows- servicice- Application" rel=“ nofollow” 。 这里仅举一个例子





相关问题
Undefined reference

I m getting this linker error. I know a way around it, but it s bugging me because another part of the project s linking fine and it s designed almost identically. First, I have namespace LCD. Then I ...

C++ Equivalent of Tidy

Is there an equivalent to tidy for HTML code for C++? I have searched on the internet, but I find nothing but C++ wrappers for tidy, etc... I think the keyword tidy is what has me hung up. I am ...

Template Classes in C++ ... a required skill set?

I m new to C++ and am wondering how much time I should invest in learning how to implement template classes. Are they widely used in industry, or is this something I should move through quickly?

Print possible strings created from a Number

Given a 10 digit Telephone Number, we have to print all possible strings created from that. The mapping of the numbers is the one as exactly on a phone s keypad. i.e. for 1,0-> No Letter for 2->...

typedef ing STL wstring

Why is it when i do the following i get errors when relating to with wchar_t? namespace Foo { typedef std::wstring String; } Now i declare all my strings as Foo::String through out the program, ...

C# Marshal / Pinvoke CBitmap?

I cannot figure out how to marshal a C++ CBitmap to a C# Bitmap or Image class. My import looks like this: [DllImport(@"test.dll", CharSet = CharSet.Unicode)] public static extern IntPtr ...

Window iconification status via Xlib

Is it possible to check with the means of pure X11/Xlib only whether the given window is iconified/minimized, and, if it is, how?

热门标签