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.
我想在 Outlook 启动后立即运行 VBA 函数。这可能吗?如果可以,我需要做什么?我在 Google 上的搜索让我失望了。
我不介意会弹出安全警报。
使用Application_Startup事件ThisOutlookSession:
Application_Startup
ThisOutlookSession
Private Sub Application_Startup() MsgBox "Foo" End Sub
你看过Application_Startup()事件吗?