Results 1 to 4 of 4

Thread: Sorted -> Add a Popup to Outlook using VB Script

  1. #1

    Thread Starter
    Frenzied Member
    Join Date
    Nov 2001
    Posts
    1,384

    Talking 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

  2. #2

    Thread Starter
    Frenzied Member
    Join Date
    Nov 2001
    Posts
    1,384
    Mel

  3. #3
    Frenzied Member
    Join Date
    Jan 2001
    Location
    Newbury, UK
    Posts
    1,878
    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:
    1. Private Sub Application_Startup()
    2.   MsgBox "We have started"  
    3.   Application.ActiveExplorer.WindowState = olMaximized
    4. End Sub

  4. #4

    Thread Starter
    Frenzied Member
    Join Date
    Nov 2001
    Posts
    1,384
    Nice one. Thanks
    Mel

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width