投稿者 HINATA  (小学生) 投稿日時 2008/10/2 03:06:26
Dim Processes() As Process = Process.GetProcesses

        For Each Process As Process In Processes
            If Process.ProcessName = "notepad" Then
                Process.Kill()
            End If
        Next

これでどうでしょう。この場合"notepad"、つまりメモ帳が終了します。