Click here to Skip to main content
15,887,485 members
Home / Discussions / C#
   

C#

 
GeneralRe: how to Get returned value from other application(s) ? [modified] Pin
electriac7-Apr-07 0:38
electriac7-Apr-07 0:38 
GeneralRe: how to Get returned value from other application(s) ? Pin
Martin#7-Apr-07 2:17
Martin#7-Apr-07 2:17 
GeneralRe: how to Get returned value from other application(s) ? Pin
electriac7-Apr-07 2:23
electriac7-Apr-07 2:23 
GeneralRe: how to Get returned value from other application(s) ? Pin
Martin#7-Apr-07 8:56
Martin#7-Apr-07 8:56 
GeneralRe: how to Get returned value from other application(s) ? Pin
electriac7-Apr-07 10:05
electriac7-Apr-07 10:05 
GeneralRe: how to Get returned value from other application(s) ? Pin
Martin#8-Apr-07 8:04
Martin#8-Apr-07 8:04 
GeneralRe: how to Get returned value from other application(s) ? [modified] Pin
electriac8-Apr-07 11:48
electriac8-Apr-07 11:48 
GeneralRe: how to Get returned value from other application(s) ? Pin
Martin#9-Apr-07 19:57
Martin#9-Apr-07 19:57 
Hello electriac!

electriac wrote:
I have used the code as included above for several years without problem.

electriac wrote:
Notice the user is already using my submitted snippet

I never wanted to say that your code is wrong, it's just not disposing the process instance (which means that the GC will not free the memory the instance used).

electriac wrote:
How a about rewriting my suggestion with your addition. A complete snippet.

//Here the instance will be disposed automatically after the using block (even in case of an exception)
using(Process proc= Process.Start(YourFilename))
{
    proc.WaitForExit();
    int ret = proc.ExitCode;
}

//You can also manually dispose the process instance.
Process proc= Process.Start(YourFilename)
proc.WaitForExit();
int ret = proc.ExitCode;
proc.Dispose();

All the best,

Martin
GeneralRe: how to Get returned value from other application(s) ? Pin
hdv2127-Apr-07 5:59
hdv2127-Apr-07 5:59 
GeneralRe: how to Get returned value from other application(s) ? Pin
electriac7-Apr-07 6:09
electriac7-Apr-07 6:09 
Questionhow to playback avi stream with directShow? Pin
hdv2126-Apr-07 23:05
hdv2126-Apr-07 23:05 
Questionsimple email program.. Pin
Prashanth KP6-Apr-07 23:00
Prashanth KP6-Apr-07 23:00 
AnswerRe: simple email program.. Pin
Pualee7-Apr-07 7:14
Pualee7-Apr-07 7:14 
Questionusing DirectX Video class in a C#.NET application Pin
xesion6-Apr-07 21:41
xesion6-Apr-07 21:41 
AnswerRe: using DirectX Video class in a C#.NET application Pin
xesion6-Apr-07 21:54
xesion6-Apr-07 21:54 
QuestionAssociating Icons in C# Pin
Rohithaa6-Apr-07 20:01
Rohithaa6-Apr-07 20:01 
AnswerRe: Associating Icons in C# Pin
Nader Elshehabi6-Apr-07 23:20
Nader Elshehabi6-Apr-07 23:20 
QuestionRe: Associating Icons in C# Pin
Rohithaa6-Apr-07 23:58
Rohithaa6-Apr-07 23:58 
AnswerRe: Associating Icons in C# Pin
Nader Elshehabi7-Apr-07 2:21
Nader Elshehabi7-Apr-07 2:21 
QuestionUsing Controls in Classes [modified] Pin
freshonlineMax6-Apr-07 19:08
freshonlineMax6-Apr-07 19:08 
AnswerRe: Using Controls in Classes Pin
Nader Elshehabi6-Apr-07 23:23
Nader Elshehabi6-Apr-07 23:23 
Questionseveral events - one action Pin
Glen Harvy6-Apr-07 17:29
Glen Harvy6-Apr-07 17:29 
AnswerRe: several events - one action Pin
Not Active6-Apr-07 17:43
mentorNot Active6-Apr-07 17:43 
GeneralRe: several events - one action Pin
Glen Harvy6-Apr-07 17:49
Glen Harvy6-Apr-07 17:49 
GeneralRe: several events - one action Pin
Sathesh Sakthivel6-Apr-07 18:02
Sathesh Sakthivel6-Apr-07 18:02 

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.