When I start a new process, what difference does it make if I use the
WindowStyle = hidden
or the
CreateNoWindow = true
property of the ProcessStartInfo class?
|
When I start a new process, what difference does it make if I use the
or the
property of the | |||
|
feedback
|
|
As Hans said, WindowStyle is a recommendation passed to the process, the application can choose to ignore it. CreateNoWindow controls how the console works for the child process, but it doesn't work alone. CreateNoWindow works in conjunction with UseShellExecute as follows: To run the process without any window:
To run the child process in it's own window (new console)
To run the child process in the parent's console window
| |||||
feedback
|
|
CreateNoWindow only applies to console mode apps, it won't create the console window. WindowStyle only applies to native Windows GUI apps. It is a hint passed to the WinMain() startup function of such a program, telling it how to show its main window. This is the same hint that appears as the "Run" setting in a desktop shortcut. Note that "hidden" is not an option there, not every Windows program honors that request. | |||
|
feedback
|
|
Using Reflector, it looks like In MSDN's example, you can see how they set it:
In the other example, its just below because
| ||||
|
feedback
|