Re: How to: Launch A Console Appplication in Hidden Mode?
- From: "Noah Stein" <noah_stXXX[fill in the Xs]@naughtydog.com>
- Date: Thu, 22 Jun 2006 16:26:13 -0700
Execute it with a System.Diagnostics.Process. You can set the property
CreateNoWindow to false. You can also have it redirect standard output so
that you can send the text written out anywhere you want. Here's some code
from one of my VBA macros:
Dim p As System.Diagnostics.Process = New System.Diagnostics.Process
p.StartInfo.FileName = "myeditor"
p.StartInfo.WorkingDirectory = doc.Path
p.StartInfo.Arguments = Cmd$ & " " & doc.Name
p.StartInfo.UseShellExecute = False
p.StartInfo.RedirectStandardOutput = True
p.StartInfo.CreateNoWindow = True
p.Start()
p.WaitForExit()
Good luck.
-- Noah
"ESmith" <eliana_smith@xxxxxxxxxxx> wrote in message
news:eI1Ox2flGHA.4444@xxxxxxxxxxxxxxxxxxxxxxx
I want to create a small console application that essentially gets some
information and then launches a Windows Application. What I want to do is
have the console application launched in hidden mode - I know how to do
this from with a Windows Application by creating a Process and using
StartInfo, but how can I configure a console application to run in hidden
mode from startup?
TIA
.
- References:
- Prev by Date: System ShutDown..
- Next by Date: Re: How to share the socket between .net framework 1.1 and unmanaged code
- Previous by thread: Re: How to: Launch A Console Appplication in Hidden Mode?
- Next by thread: Re: How to: Launch A Console Appplication in Hidden Mode?
- Index(es):
Relevant Pages
|