2
我想發送一個字符串變量到命令提示符使用vba excel。 我使用下面的代碼: -如何使用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
在呼籲Perl腳本在行 「oWsc.Exec(」 perl的F:\ My_work \ hello_world.pl CODE_NAME版本標籤 「)」 我想送原裝字符串變量code_name,version,label的內容;但它發送變量名稱,而不是內容;誰能幫我這個? 在此先感謝。