Is it possible to add a popup that will appear when a user opens MS Outlook or Outlook Express?
I believe it can be done using VB Script.
Printable View
Is it possible to add a popup that will appear when a user opens MS Outlook or Outlook Express?
I believe it can be done using VB Script.
:(
Yes it is possible with Outlook.
No it is not possible with Outlook Express.
No, I don't think you can do it with a VB Script file (but I could be wrong - I don't think you can do the WithEvents in VB Script files).
You can create a macro (using VBA) in Outlook that does theings when the application starts up.
Outlook, Tools, Macro, Visual Basic Editor.
On the left, click Project1, Microsoft Outlook Object, ThisOutlook Session.
On the right, put:
VB Code:
Private Sub Application_Startup() MsgBox "We have started" Application.ActiveExplorer.WindowState = olMaximized End Sub
Nice one. Thanks;)