I would like to have a VBA function run as soon as Outlook starts up. Is this possible and if so, what do I need to do? My searches on Google have failed me.
I don't mind that the security alert will pop up.
Use the Application_Startup
event in ThisOutlookSession
:
Private Sub Application_Startup()
MsgBox "Foo"
End Sub
Have you looked at the Application_Startup() event?
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With