I am running a sub routine from Outlook VBA that opens an Excel User Form. The calling code in Outlook works great, however the User Form is sometimes hidden underneath other application windows.
How can I ensure my user form always displays on top of every application window?
Code
Sub TMAPAddIn()
Dim ExApp As Object
Set ExApp = CreateObject("Excel.Application")
Dim informationalBox As UserForm2
Set informationalBox = New UserForm2
informationalBox.Show 'letting the user know the workbook is downloading so they dont think Outlook froze
Dim ExWbk As Workbook
Set ExWbk = ExApp.Workbooks.Open("Z/TMAPAddIn.xlam", ReadOnly:=True) 'Z is a network drive
informationalBox.Hide
ExWbk.Application.Run "Module1.example"
ExApp = Nothing
ExWbk = Nothing
End Sub