Hi Guys,
I seem in forums lot's of the developer asking how to pass the arguments when they call exe within the another application in.NET. is quite easy.
{codecitation class="brush: vb; gutter: true;" width="700px"} Dim process As New Process() process.StartInfo = New ProcessStartInfo("abc.exe") process.StartInfo.Arguments = "folderpath " ' if you need suply multiple arguments you need put space "A B" process.StartInfo.WindowStyle = ProcessWindowStyle.Hidden process.Start() {/codecitation} |