Click here to Skip to main content
15,886,770 members
Home / Discussions / C#
   

C#

 
GeneralRe: c# 64 bit .net c++ dll reference problem Pin
harold aptroot19-Feb-13 3:19
harold aptroot19-Feb-13 3:19 
QuestionHow to read out whole static text present on external application's Input boxes or message boxes in C# Pin
sham bhand18-Feb-13 20:51
sham bhand18-Feb-13 20:51 
AnswerRe: How to read out whole static text present on external application's Input boxes or message boxes in C# Pin
N a v a n e e t h18-Feb-13 22:27
N a v a n e e t h18-Feb-13 22:27 
AnswerRe: How to read out whole static text present on external application's Input boxes or message boxes in C# Pin
Gerry Schmitz19-Feb-13 20:27
mveGerry Schmitz19-Feb-13 20:27 
GeneralRe: How to read out whole static text present on external application's Input boxes or message boxes in C# Pin
sham bhand21-Feb-13 4:48
sham bhand21-Feb-13 4:48 
GeneralRe: How to read out whole static text present on external application's Input boxes or message boxes in C# Pin
Gerry Schmitz21-Feb-13 8:40
mveGerry Schmitz21-Feb-13 8:40 
Question[SOLVED] Not Getting CPU Usage Pin
AmbiguousName18-Feb-13 18:51
AmbiguousName18-Feb-13 18:51 
QuestionC# run a process Pin
classy_dog18-Feb-13 7:02
classy_dog18-Feb-13 7:02 
I working with C# 2008 and 2012 windows applications that need to call different executables.
Are there other ways to call theses processes besides the way I have the code listed below:
Process eProcess1 = new Process();
 eProcess1.StartInfo.FileName = strConsoleAppLocation;
 Process1_Arguments =  " 10 " + kgID;
 eRPT_Process1.StartInfo.Arguments = Process1_Arguments;
 eRPT_Process1.Start();

If there are other ways to start a process, can you write the code and/or point me to a reference that
will display other ways that an executable can be run from C# code?
AnswerRe: C# run a process Pin
Eddy Vluggen18-Feb-13 7:48
professionalEddy Vluggen18-Feb-13 7:48 
GeneralRe: C# run a process Pin
classy_dog18-Feb-13 8:22
classy_dog18-Feb-13 8:22 
GeneralRe: C# run a process Pin
Eddy Vluggen18-Feb-13 8:30
professionalEddy Vluggen18-Feb-13 8:30 
GeneralRe: C# run a process Pin
classy_dog18-Feb-13 14:04
classy_dog18-Feb-13 14:04 
GeneralRe: C# run a process Pin
Eddy Vluggen18-Feb-13 22:31
professionalEddy Vluggen18-Feb-13 22:31 
GeneralRe: C# run a process Pin
classy_dog19-Feb-13 5:38
classy_dog19-Feb-13 5:38 
GeneralRe: C# run a process Pin
Eddy Vluggen19-Feb-13 9:34
professionalEddy Vluggen19-Feb-13 9:34 
QuestionThread.Sleep is NOT evil Pin
devvvy18-Feb-13 5:55
devvvy18-Feb-13 5:55 
AnswerRe: Thread.Sleep is NOT evil Pin
Pete O'Hanlon18-Feb-13 6:15
mvePete O'Hanlon18-Feb-13 6:15 
GeneralRe: Thread.Sleep is NOT evil Pin
devvvy18-Feb-13 13:29
devvvy18-Feb-13 13:29 
GeneralRe: Thread.Sleep is NOT evil Pin
N a v a n e e t h18-Feb-13 16:12
N a v a n e e t h18-Feb-13 16:12 
GeneralTHANK YOU - this is the answer I was looking for. Pin
devvvy19-Feb-13 12:53
devvvy19-Feb-13 12:53 
GeneralRe: Thread.Sleep is NOT evil Pin
Pete O'Hanlon18-Feb-13 20:43
mvePete O'Hanlon18-Feb-13 20:43 
GeneralApplication Exit vs Thread.Abort? Pin
devvvy19-Feb-13 13:12
devvvy19-Feb-13 13:12 
GeneralRe: Thread.Sleep is NOT evil Pin
Simon_Whale18-Feb-13 13:41
Simon_Whale18-Feb-13 13:41 
GeneralRe: Thread.Sleep is NOT evil Pin
N a v a n e e t h18-Feb-13 16:15
N a v a n e e t h18-Feb-13 16:15 
GeneralRe: Thread.Sleep is NOT evil Pin
devvvy19-Feb-13 1:41
devvvy19-Feb-13 1:41 

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.