标签: vba ms-access ms-access-2007
我无法找到有关创建用于启动外部程序的MS Access GUI宏(VB)的信息。
建议?
答案 0 :(得分:2)
使用Shell()功能:
Shell()
result = Shell("C:\My\Program\To\Run.exe")
有关详细信息,请参阅here。
答案 1 :(得分:1)
WScript.Shell提供了另一种选择:
WScript.Shell
Dim wshShell Set wshShell = CreateObject("WScript.Shell") wshShell.Exec "CALC.EXE" Set wshShell = Nothing