~のソフトが起動していたら終了
投稿者 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"、つまりメモ帳が終了します。
For Each Process As Process In Processes
If Process.ProcessName = "notepad" Then
Process.Kill()
End If
Next
これでどうでしょう。この場合"notepad"、つまりメモ帳が終了します。
投稿者 HINATA  (小学生)
投稿日時
2008/10/2 03:13:26
と思ったらもっといいのが...
http://point56.blogspot.com/2007/02/vbnet.html
http://point56.blogspot.com/2007/02/vbnet.html
そこまで必要ではないので、またいつか考えてみようと思います。
2つ目の投稿になりますが、
「***.exeが起動していたら、****(endや、msgbox"***を閉じてください")をする」
ってことは可能でしょうか?