gpt4 book ai didi

vb.net - 使用 VB.NET 终止窗口中正在运行的进程

转载 作者:行者123 更新时间:2023-12-02 06:42:35 28 4
gpt4 key购买 nike

如何使用VB.NET 2.0框架杀死窗口中其他正在运行的进程?

最佳答案

您只需通过kill()方法终止进程即可。

    Dim processList() As Process
processList = Process.GetProcessesByName(ListBox1.Items(ListBox1.SelectedIndex).ToString)

For Each proc As Process In processList
If MsgBox("Terminate " & proc.ProcessName & "?", MsgBoxStyle.YesNo, "Terminate?") = MsgBoxResult.Yes Then
Try
proc.Kill()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
End If
Next

关于vb.net - 使用 VB.NET 终止窗口中正在运行的进程,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10349837/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com