|
-
Jul 21st, 2003, 10:52 AM
#1
Thread Starter
Frenzied Member
Sorted -> Add a Popup to Outlook using VB Script
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.
Last edited by mel_flynn; Jul 23rd, 2003 at 04:00 AM.
Mel
-
Jul 21st, 2003, 11:26 AM
#2
Thread Starter
Frenzied Member
-
Jul 22nd, 2003, 05:03 AM
#3
Frenzied Member
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
-
Jul 23rd, 2003, 03:59 AM
#4
Thread Starter
Frenzied Member
Nice one. Thanks
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|