public sub shTest
Dim sh As Shell
Dim pathToExe As String = File.Combine(File.DirApp,"yourExe.exe")
sh.Initialize("test",pathToExe,Null)
sh.RunSynchronous(-1)
end sub
public Sub test_ProcessCompleted (Success As Boolean, ExitCode As Int, StdOut As String, StdErr As String)
log(Success)
End Sub