Click here to Skip to main content
15,891,976 members
Home / Discussions / C#
   

C#

 
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 
GeneralRe: visual web developer Pin
Gareth H28-Jan-08 4:53
Gareth H28-Jan-08 4:53 
GeneralClosing a form before it even shows Pin
Dewald28-Jan-08 2:49
Dewald28-Jan-08 2:49 
GeneralRe: Closing a form before it even shows Pin
leppie28-Jan-08 3:46
leppie28-Jan-08 3:46 
GeneralRe: Closing a form before it even shows Pin
CKnig28-Jan-08 3:56
CKnig28-Jan-08 3:56 
GeneralRe: Closing a form before it even shows Pin
CKnig28-Jan-08 3:51
CKnig28-Jan-08 3:51 
GeneralRe: Closing a form before it even shows Pin
Dewald28-Jan-08 19:12
Dewald28-Jan-08 19:12 
GeneralRe: Closing a form before it even shows Pin
BadKarma28-Jan-08 4:08
BadKarma28-Jan-08 4:08 

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.