Click here to Skip to main content
15,925,723 members
Home / Discussions / C#
   

C#

 
GeneralRe: Question on using the & sign and string Pin
avengerzx928-Jan-08 5:42
avengerzx928-Jan-08 5:42 
GeneralRe: Question on using the & sign and string Pin
Rob Philpott28-Jan-08 5:57
Rob Philpott28-Jan-08 5:57 
GeneralRe: Question on using the & sign and string Pin
PIEBALDconsult28-Jan-08 7:34
mvePIEBALDconsult28-Jan-08 7:34 
Generalproperties sort order Pin
netJP12L28-Jan-08 5:16
netJP12L28-Jan-08 5:16 
GeneralRe: properties sort order Pin
LongRange.Shooter28-Jan-08 8:31
LongRange.Shooter28-Jan-08 8:31 
GeneralRe: properties sort order Pin
visualhint30-Jan-08 5:37
visualhint30-Jan-08 5:37 
GeneralWorker thread problem Pin
Rick van Woudenberg28-Jan-08 3:48
Rick van Woudenberg28-Jan-08 3:48 
GeneralRe: Worker thread problem Pin
Mustafa Ismail Mustafa28-Jan-08 3:57
Mustafa Ismail Mustafa28-Jan-08 3:57 
GeneralRe: Worker thread problem Pin
leppie28-Jan-08 4:10
leppie28-Jan-08 4:10 
GeneralRe: Worker thread problem Pin
Mustafa Ismail Mustafa28-Jan-08 8:08
Mustafa Ismail Mustafa28-Jan-08 8:08 
GeneralRe: Worker thread problem Pin
Pete O'Hanlon28-Jan-08 9:33
mvePete O'Hanlon28-Jan-08 9:33 
GeneralRe: Worker thread problem Pin
leppie28-Jan-08 4:01
leppie28-Jan-08 4:01 
Generalcreateprocess. Stop command prompt being shown Pin
Ylno28-Jan-08 3:36
Ylno28-Jan-08 3:36 
GeneralRe: createprocess. Stop command prompt being shown Pin
leppie28-Jan-08 3:56
leppie28-Jan-08 3:56 
GeneralRe: createprocess. Stop command prompt being shown Pin
Justin Perez28-Jan-08 4:01
Justin Perez28-Jan-08 4:01 
Ylno wrote:
I have several precompiled binaries(but not the code) and am looking to make
a GUI to make the use of these binaries more user friendly. I was going to
call the binaries by using createprocess but the problem is when the binaries
run the command propmt flashes up and sort of makes the GUI look messy.
Is there a way I can call these binaries and request that their window/prompt
is not visible?


Yes. Set the CreateNoWindow property in your Process StartInfo to true. See below.

Process cmdLineProcess = new Process();

cmdLineProcess.StartInfo.CreateNoWindow = true;


I'm going to become rich when I create a device that allows me to punch people in the face over the internet.

"If an Indian asked a programming question in the forest, would it still be urgent?" - John Simmons / outlaw programmer

GeneralConvert a row of a 2d array into a 1d array. Pin
Dan Neely28-Jan-08 3:22
Dan Neely28-Jan-08 3:22 
GeneralRe: Convert a row of a 2d array into a 1d array. Pin
Skippums28-Jan-08 4:27
Skippums28-Jan-08 4:27 
GeneralRe: Convert a row of a 2d array into a 1d array. Pin
Dan Neely28-Jan-08 5:16
Dan Neely28-Jan-08 5:16 
GeneralRe: Convert a row of a 2d array into a 1d array. Pin
Skippums28-Jan-08 6:09
Skippums28-Jan-08 6:09 
GeneralRe: Convert a row of a 2d array into a 1d array. Pin
Ennis Ray Lynch, Jr.28-Jan-08 8:46
Ennis Ray Lynch, Jr.28-Jan-08 8:46 
GeneralRe: Convert a row of a 2d array into a 1d array. Pin
Dan Neely28-Jan-08 9:09
Dan Neely28-Jan-08 9:09 
GeneralRe: Convert a row of a 2d array into a 1d array. Pin
Ennis Ray Lynch, Jr.28-Jan-08 9:20
Ennis Ray Lynch, Jr.28-Jan-08 9:20 
GeneralRe: Convert a row of a 2d array into a 1d array. Pin
PIEBALDconsult28-Jan-08 13:09
mvePIEBALDconsult28-Jan-08 13:09 
GeneralRe: Convert a row of a 2d array into a 1d array. Pin
Ennis Ray Lynch, Jr.28-Jan-08 14:07
Ennis Ray Lynch, Jr.28-Jan-08 14:07 
Generalvisual web developer Pin
zeeShan anSari28-Jan-08 3:12
zeeShan anSari28-Jan-08 3:12 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.