2
當我在vba
中調用shell命令時,程序將像命令提示符一樣打開,但沒有任何反應,也沒有獲得任何結果。我似乎無法弄清楚,需要一些幫助。在Excel 2010中調用shell命令VBA
指揮的作品
C:\Program Files\BioDiscovery\ImaGene 9.0>ImaGene.exe -batch "C:\Users\cmccabe\Desktop\EmArray\Design\test_11_19_2015.bch"
我在2010年Excel中嘗試使用VBA(這將打開程序和命令提示,但不執行命令)。
Dim Par As String
Par = "dir c:\Program Files\BioDiscovery\ImaGene 9.0\ImaGene.exe -batch "C:\Users\cmccabe\Desktop\EmArray\Design\imagene.bch"
Call Shell("C:\WINDOWS\system32\cmd.exe /c " & Par, 1)
MsgBox ("ImaGene analysis complete")
非常感謝,我一直在努力。我感謝您的幫助 :)。 – Chris