在我的程序中,我需要通过VB.NET framework 2.0列出当前在 Windows上运行的所有进程. 我可以用VB.NET编码获得这个列表吗? 您可以使用Process.GetProcesses函数 试试这段代码. For Each OneProcess As Pro
我可以用VB.NET编码获得这个列表吗?
您可以使用Process.GetProcesses函数试试这段代码.
For Each OneProcess As Process In Process.GetProcesses ListBox1.Items.Add(OneProcess.ProcessName) Next