我正在尝试使用 vba excel 将字符串变量发送到命令提示符。我正在使用以下代码:-
code_name = "xyz.c"
version = "def"
label = "1XDFO"
'open command prompt
Dim oWsc As Object
Set oWsc = CreateObject("WScript.Shell")
Dim oExec As Object
'save config spec in a text file
Set oExec = oWsc.Exec("perl F:\My_work\hello_world.pl code_name version label")
While oExec.Status <> 1 ' Wait for process
Sleep 1000
Wend
在 "oWsc.Exec("perl F:\My_work\hello_world.pl code_name version label")" 行调用 perl 脚本时,我想发送字符串变量 code_name,version,label 的原始内容;但它按原样发送变量名称而不是内容;谁能帮我这个?提前致谢。