65

Hi I am trying to do the following: I have a process which can take parameters (digits) and return the sum of these numbers

Process P = Process.Start(sPhysicalFilePath, Param);
                int result = P.ExitCode;

I get the return value from "ExitCode" the problem is: the program sometimes finishes his work before the process so when the program reaches this line

int result = P.ExitCode;

I got an exception .. my question is how to wait this process until it finishes its work sorry I forget to say that's I am working with C# language

Hany
  • 1,098
  • 4
  • 17
  • 25

2 Answers2

121

use:

Process P = Process.Start(sPhysicalFilePath, Param);
P.WaitForExit();
int result = P.ExitCode;

from MSDN

snicker
  • 6,020
  • 6
  • 41
  • 49
-2

You can try the below code:

    Dim P As New Process
    P = Process.Start(info)
    P.WaitForExit()
    fichiersATraiter = P.ExitCode

Hope this helps :)

Christopher H.
  • 4,750
  • 5
  • 20
  • 43
Bahaa J.
  • 7
  • 4