Dear,
I have a file in "C:\my" called "2.exe" which load its methods from a DLL called "2.dll" found in the same place. Some of these methods is outpot stream which write some notes to a file in te same location too.
I created another application "1.exe", not in the same location, this application call the "2.exe" application.
If I use Process class, the stream writer right the file on the path of "1.exe" and not the original path of "2.exe" and the methods called by 2.exe from the dll not found.
I want to call the exe file without using process to prevent path mistakes.
Thx