Hi, there!
I need to execute an application from my C# program, but I have no clue how to do that... :rolleyes:
I want to execute, say, "winrar", with all the parameters needed...
How can I do it ?
Tks in advance,
João Luiz
Printable View
Hi, there!
I need to execute an application from my C# program, but I have no clue how to do that... :rolleyes:
I want to execute, say, "winrar", with all the parameters needed...
How can I do it ?
Tks in advance,
João Luiz
;)C# Code:
System.Diagnostics.Process.Start(pathToExe);
Hi, Atheist!
You are so faster!!!
I've tried it, while I'm waiting an answer...
I received this exception message:Code:Process.Start("C:\\Arquivos de Programas\\WinRar\\Winrar.exe x
e:\\Paper_Clock.rar *.* e:\\tester\\")
If I try:Code:System.ComponentModel.Win32Exception:The system couldn't found the specified file
It works pretty good.... :(Code:Process.Start("C:\\Arquivos de Programas\\WinRar\\Winrar.exe")
[]s
João Luiz
Atheist,
I got it!!! :afrog: :afrog: :afrog:
[]sCode:Process.Start("C:\\Arquivos de Programas\\WinRar\\Winrar.exe" ,
" x e:\\Paper_Clock.rar *.* e:\\tester\\").WaitForExit();
João Luiz