Click here to Skip to main content
15,902,635 members
Home / Discussions / C#
   

C#

 
GeneralRe: User Control Pin
fjlv200526-Feb-07 23:33
fjlv200526-Feb-07 23:33 
GeneralRe: User Control Pin
Christian Graus26-Feb-07 23:44
protectorChristian Graus26-Feb-07 23:44 
Questionerrorlist Pin
kalyanit26-Feb-07 22:58
kalyanit26-Feb-07 22:58 
AnswerRe: errorlist Pin
Colin Angus Mackay26-Feb-07 23:21
Colin Angus Mackay26-Feb-07 23:21 
QuestionHow to pass attributes to an exe?? Pin
Neha_Gupta26-Feb-07 22:17
Neha_Gupta26-Feb-07 22:17 
AnswerRe: How to pass attributes to an exe?? Pin
althamda26-Feb-07 22:38
althamda26-Feb-07 22:38 
AnswerRe: How to pass attributes to an exe?? Pin
Stefan Troschuetz26-Feb-07 22:48
Stefan Troschuetz26-Feb-07 22:48 
AnswerRe: How to pass attributes to an exe?? Pin
Martin#26-Feb-07 23:17
Martin#26-Feb-07 23:17 
Hello,

In the namespace System.Diagnostics you will find Process and ProcessStartInfo.

ProcessStartInfo psi= new ProcessStartInfo();
psi.UseShellExecute = false; //look at the discription if you need it!
psi.FileName = ???;//exe file name
psi.WorkingDirectory = ???;//path to the exe
psi.Arguments = @"xxx"; //set the arguments you whant (for more than one you have to separate with " ")
using(Process YourProcess= Process.Start(psi))
{
	YourProcess.???; //Here you can do stuff with the process if you have to.
}


All the best,

Martin
QuestionRichTextBox - large string loading problem Pin
Darko_R26-Feb-07 21:58
Darko_R26-Feb-07 21:58 
AnswerRe: RichTextBox - large string loading problem Pin
sam#27-Feb-07 0:45
sam#27-Feb-07 0:45 
AnswerRe: RichTextBox - large string loading problem Pin
sam#27-Feb-07 0:45
sam#27-Feb-07 0:45 
GeneralRe: RichTextBox - large string loading problem Pin
mav.northwind27-Feb-07 1:17
mav.northwind27-Feb-07 1:17 
GeneralRe: RichTextBox - large string loading problem Pin
Luc Pattyn27-Feb-07 2:16
sitebuilderLuc Pattyn27-Feb-07 2:16 
QuestionRe: RichTextBox - large string loading problem Pin
Darko_R27-Feb-07 8:26
Darko_R27-Feb-07 8:26 
AnswerRe: RichTextBox - large string loading problem Pin
mav.northwind27-Feb-07 9:39
mav.northwind27-Feb-07 9:39 
GeneralRe: RichTextBox - large string loading problem Pin
sam#27-Feb-07 2:37
sam#27-Feb-07 2:37 
GeneralRe: RichTextBox - large string loading problem Pin
mav.northwind27-Feb-07 9:23
mav.northwind27-Feb-07 9:23 
GeneralRe: RichTextBox - large string loading problem Pin
sam#28-Feb-07 1:10
sam#28-Feb-07 1:10 
GeneralRe: RichTextBox - large string loading problem Pin
mav.northwind28-Feb-07 6:29
mav.northwind28-Feb-07 6:29 
GeneralRe: RichTextBox - large string loading problem Pin
sam#28-Feb-07 21:09
sam#28-Feb-07 21:09 
GeneralRe: RichTextBox - large string loading problem Pin
mav.northwind3-Mar-07 7:20
mav.northwind3-Mar-07 7:20 
Questioninheritance Issue Pin
tcss26-Feb-07 20:43
tcss26-Feb-07 20:43 
AnswerRe: inheritance Issue Pin
tcss26-Feb-07 21:33
tcss26-Feb-07 21:33 
GeneralRe: inheritance Issue Pin
Jakub Mller26-Feb-07 23:43
Jakub Mller26-Feb-07 23:43 
GeneralRe: inheritance Issue Pin
tcss2-Mar-07 8:27
tcss2-Mar-07 8:27 

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.