[求助] 求在程序运行时禁止系统进程打开的方法
本人学习VB不足两月,想要在编程中禁止某个系统进程打开,请问有什么方法。我找到一个用VBS脚本来实现的方法,就是不懂在VB编程中实现。VBS脚本代码附上
dim qobj,pipe,good
do
set qobj=getobject("winmgmts:\\"&good$"\root\cimv2")
set pipe=qobj.execquery("select*from win32-process where name='QQ.exe")
for each i in pipe
i.terminate()
next
wscript.sleep 1
loop
先谢谢各位啦