how do i attatch vba code that runs automatically when outlook fires up ?
M Michael Bauer Jan 20, 2005 #2 Hi Graham, it is the event Application_Startup you´re looking for. -- Viele Grüße Michael Bauer Graham said: how do i attatch vba code that runs automatically when outlook fires Click to expand... up ?
Hi Graham, it is the event Application_Startup you´re looking for. -- Viele Grüße Michael Bauer Graham said: how do i attatch vba code that runs automatically when outlook fires Click to expand... up ?
G Graham Jan 20, 2005 #3 Michael Thanks for this. I have tried to use the event but without success. I don't suppose you or anyone else have a few lines of sample code that I could check against. Graham
Michael Thanks for this. I have tried to use the event but without success. I don't suppose you or anyone else have a few lines of sample code that I could check against. Graham
M Michael Bauer Jan 20, 2005 #4 Hi Graham, Private Sub Application_Startup() ' your code goes here End Sub That´s all; please copy the few lines in the modul "ThisOutlookSession".
Hi Graham, Private Sub Application_Startup() ' your code goes here End Sub That´s all; please copy the few lines in the modul "ThisOutlookSession".