Private Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click Dim newProc As Diagnostics.Process 'newProc = Diagnostics.Process.Start("Notepad.exe") ' This Works newProc = Diagnostics.Process.Start("Explorer.exe") ' This does not work newProc.WaitForExit() MsgBox("Continue Processing") End Sub
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)