Advertisement
nateshoffner

Untitled

Oct 22nd, 2011
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.25 KB | None | 0 0
  1. Dim psi = New ProcessStartInfo() With { _
  2.     Key .WorkingDirectory = slab6directory, _
  3.     Key .FileName = "slab6.exe", _
  4.     Key .Arguments = filePath, _
  5.     Key .UseShellExecute = True _
  6. }
  7.  
  8. Dim p = New Process() With { _
  9.     Key .StartInfo = psi _
  10. }
  11. p.Start()
  12.  
  13.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement