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 调用 python 脚本,其中包含以下内容:
Sub python_call() Application.COMAddIns("DataNitro.DataNitro").Object.RunScript ("test.py") 'do some other stuff End Sub
test.py需要一段时间才能运行,所以我希望 VBA 在运行剩余代码之前等待。除了 有没有办法做到这一点Application.Wait?
test.py
Application.Wait
你能从 DataNitro 调用你的 VBA 代码,而不是反过来吗?这将同步执行。