Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
CMDウィンドウを開いて dir を呼び出そうとしています。
CMD
r = Shell("cmd.exe", vbNormalFocus) AppActivate r SendKeys "dir", True 'put your exe path/name here instead of dir SendKeys "{ENTER}"
開きますが、印刷も実行もされcmd.exeません。dirdir
cmd.exe
dir
簡単に電話してみませんか:
r = Shell("cmd.exe /k dir", vbNormalFocus)
この呼び出しは、SendKeysを操作せずに、cmdでdirコマンドを実行します。