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; の元の内容を送信したい。ただし、コンテンツではなく変数名をそのまま送信します。誰でもこれで私を助けることができますか?前もって感謝します。