Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
[code] Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim p() As System.Diagnostics.Process = Process.GetProcessesByName("cmd") If p.Length = 1 Then p(0).Kill() End If End Sub End Class [/code] I am trying to kill multiple cmd processes, the above code will only kill one of them, is …
The End.
Chrono841