Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
Remarks
An Outlook Visual Basic for Applications (VBA) macro can use this event procedure to initialize itself when Outlook starts.
Example
This Microsoft Outlook Visual Basic for Applications example displays a welcome message to the user and maximizes the Outlook explorer window when Outlook starts.
Private Sub Application_Startup()
MsgBox "Welcome, " & Application.GetNamespace("MAPI").CurrentUser
Application.ActiveExplorer.WindowState = olMaximized
End Sub
[COLOR=blue]Private Sub[/color] Application_ItemSend([COLOR=blue]ByVal[/color] Item [COLOR=blue]As Object[/color], Cancel [COLOR=blue]As Boolean[/color])
[COLOR=blue]End Sub[/color][COLOR=gray]
_____________________________________________________________________[/color]
[COLOR=blue]Private Sub [/color]Application_Startup()
[COLOR=blue]
End Sub[/color]