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(sPhysic
use:
Process P = Process.Start(sPhysicalFilePath, Param); P.WaitForExit(); int result = P.ExitCode;
from MSDN
You can try the below code:
Dim P As New Process P = Process.Start(info) P.WaitForExit() fichiersATraiter = P.ExitCode
Hope this helps :)