Advertisement
nateshoffner

Untitled

Oct 22nd, 2011
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.33 KB | None | 0 0
  1.        Dim info2 As New ProcessStartInfo
  2.         info2.WorkingDirectory = slabDir;
  3.         info2.FileName = "slab6.exe"
  4.         info2.Arguments = filePath;
  5.         info2.UseShellExecute = True
  6.         Dim info As ProcessStartInfo = info2
  7.         Dim process2 As New Process
  8.         process2.StartInfo = info
  9.         process2.Start
  10.  
  11.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement