Click here to Skip to main content
15,892,809 members
Home / Discussions / C#
   

C#

 
GeneralLock a ArrayList Pin
Snowjim25-Apr-05 11:21
Snowjim25-Apr-05 11:21 
GeneralRe: Lock a ArrayList Pin
Dave Kreskowiak25-Apr-05 14:01
mveDave Kreskowiak25-Apr-05 14:01 
GeneralRe: Lock a ArrayList Pin
S. Senthil Kumar25-Apr-05 18:14
S. Senthil Kumar25-Apr-05 18:14 
GeneralRe: Lock a ArrayList Pin
Dave Kreskowiak26-Apr-05 2:26
mveDave Kreskowiak26-Apr-05 2:26 
GeneralRe: Lock a ArrayList Pin
S. Senthil Kumar26-Apr-05 2:28
S. Senthil Kumar26-Apr-05 2:28 
QuestionHow to list all disks Pin
Anonymous25-Apr-05 10:59
Anonymous25-Apr-05 10:59 
AnswerRe: How to list all disks Pin
CiNN25-Apr-05 11:11
CiNN25-Apr-05 11:11 
QuestionHow to get ConfigurationSettings for multiple users Pin
Asad Hussain25-Apr-05 10:18
Asad Hussain25-Apr-05 10:18 
AnswerRe: How to get ConfigurationSettings for multiple users Pin
tdciDoug25-Apr-05 10:31
tdciDoug25-Apr-05 10:31 
GeneralRe: How to get ConfigurationSettings for multiple users Pin
Asad Hussain25-Apr-05 10:59
Asad Hussain25-Apr-05 10:59 
Generalprevious article on copying windows explorer functionality Pin
Anonymous25-Apr-05 9:08
Anonymous25-Apr-05 9:08 
GeneralRe: previous article on copying windows explorer functionality Pin
Polis Pilavas26-Apr-05 1:55
Polis Pilavas26-Apr-05 1:55 
QuestionSerialPort(framwork2) is freezing when closing? Pin
Snowjim25-Apr-05 8:10
Snowjim25-Apr-05 8:10 
AnswerRe: SerialPort(framwork2) is freezing when closing? Pin
Snowjim25-Apr-05 8:14
Snowjim25-Apr-05 8:14 
GeneralRe: SerialPort(framwork2) is freezing when closing? Pin
Snowjim25-Apr-05 8:36
Snowjim25-Apr-05 8:36 
GeneralSecondary message loop Pin
Luis Alonso Ramos25-Apr-05 7:48
Luis Alonso Ramos25-Apr-05 7:48 
GeneralRe: Secondary message loop Pin
S. Senthil Kumar25-Apr-05 19:06
S. Senthil Kumar25-Apr-05 19:06 
GeneralCompile differences in file and memory Pin
machocr25-Apr-05 7:15
machocr25-Apr-05 7:15 
GeneralHello All -- Some Problem In C# Pin
OMSSD8425-Apr-05 6:43
OMSSD8425-Apr-05 6:43 
GeneralRe: Hello All -- Some Problem In C# Pin
Polis Pilavas25-Apr-05 8:46
Polis Pilavas25-Apr-05 8:46 
GeneralRe: Hello All -- Some Problem In C# Pin
OMSSD8425-Apr-05 20:01
OMSSD8425-Apr-05 20:01 
GeneralRe: Hello All -- Some Problem In C# Pin
Polis Pilavas26-Apr-05 1:32
Polis Pilavas26-Apr-05 1:32 
GeneralHide the command window Pin
Sheela Krishnan25-Apr-05 6:15
Sheela Krishnan25-Apr-05 6:15 
GeneralRe: Hide the command window Pin
Steven Campbell25-Apr-05 6:24
Steven Campbell25-Apr-05 6:24 
GeneralRe: Hide the command window Pin
Dave Kreskowiak25-Apr-05 8:25
mveDave Kreskowiak25-Apr-05 8:25 
In your ProcessStartInfo object, try setting the WindowStyle property to Hidden before you start your process.
System.Diagnostics.Process process = new System.Diagnostics.Process();
process.StartInfo = new System.Diagnostics.ProcessStartInfo(command, commandLineArg);
process.StartInfo.WindowStyle = System.Diagnostics.ProcessWindowStyle.Hidden;
process.Start();



RageInTheMachine9532
"...a pungent, ghastly, stinky piece of cheese!" -- The Roaming Gnome

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.