标签: vb.net process msgbox
我想编写一段代码来检查程序是否正在运行,如果没有,则会出现MsgBox。我之前使用以下代码使用特定文件完成了此操作:
MsgBox
If (Not System.IO.Directory.Exists("\\twa-file2\staffhomes\" + TextBox1.Text)) Then MsgBox("Home Area Not Found", MsgBoxStyle.Information, "Error") End If
有人能告诉我如何为程序执行此操作吗?
答案 0 :(得分:2)
您想查看Process.GetProcesses Method ()。