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.
我是 VBA 新手。在 Excel 表中我有数据。在每一行的末尾,我都有一个 onclick 按钮。
我的要求是当我单击一个按钮时,它必须从命令提示符运行 Sikuli。
哪个命令用于在 VBA 中打开和运行命令提示符?
我不知道 sikuli,但是如果您想在单击按钮时从 VBA 代码运行命令行,请查看 Shell 命令。
Private Sub CommandButton1_Click() dblRetVal = Shell("java -jar %SIKULI_HOME%\script.jar path\yourScript.sikuli", vbHide) 'VBHIDE HIDES SHELL WINDOW (BLACK DOS WINDOW) End Sub