Per leggere l'output di un'applicazione:
; l'output si troverà in str.codice:Imports System.Diagnostics '... Dim p As New Process, str As String p.StartInfo.UseShellExecute = False p.StartInfo.FileName = "eventualepercorso\nomeapplicazione.exe" p.StartInfo.Arguments = "eventuali argomenti della linea di comando" p.StartInfo.RedirectStandardOutput = True p.Start() str = p.StandardOutput.ReadToEnd() p.WaitForExit()