VB运行VBS程序

2025-01-07 01:10:18
推荐回答(2个)
回答1:

调用shell函数(很久不用了,希望正确)

private sub command1_click()
dim x as integer
x=shell("c:\run.vbs",1) '本行已修改
end sub

x无用,但是必须得有
shell函数后面还得有一个窗口类型

回答2:

shell "c:\run.vbs"