处理WaitForExit()不等待Windows资源管理器关闭

时间:2017-05-27 01:13:35

标签: vb.net explorer waitforexit

以下代码是我尝试打开W​​indows资源管理器,然后等待用户关闭它,然后继续执行该程序。

这可以使用Notepad.exe但不能使用Exlorer.exe

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

感谢您的帮助

0 个答案:

没有答案