A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook and VBA
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

Message Option Screen



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 23rd 08, 03:02 PM posted to microsoft.public.outlook.program_vba
Outlook user
external usenet poster
 
Posts: 10
Default Message Option Screen

Is there a way when you click on the new, reply, forward, respond buttons
that the "Message Options Screen" could automatically pop up first so you
have to fill in that screen before you create/respond to a message?

I wanted to try to do this so I don't forget to set my options each time.
(I have some Rules and Alerts that run based off what is selected in the
Message Option screen).

If there is maybe a way to do this, I'm not a programmer or anything so I
would need detailed help on how to do it.

Thanks in advance for any help....
  #2  
Old May 23rd 08, 05:17 PM posted to microsoft.public.outlook.program_vba
Ken Slovak - [MVP - Outlook]
external usenet poster
 
Posts: 5,848
Default Message Option Screen

That dialog isn't exposed to the object model, so you'd have to simulate a
user clicking the menu buttons or ribbon controls to open the dialog,
depending on what version of Outlook you're talking about.

For Outlook 2003 or earlier you can get the Options button in an Inspector
using:

Dim oButton As Office.CommandBarButton
Set oButton = Inspector.CommandBars("Menu Bar").FindControl(Id:=5598,
Recursive:=True)
If Not (oButton Is Nothing) Then
oButton.Execute
End If

You'd have to trap the Inspectors.NewInspector event and in that event
instantiate an Inspector object declared WithEvents. Then you'd need to
handle the Inspector.Activate event and call the code I showed in the first
Inspector.Activate event that fired for that Inspector.

You wouldn't really have any way of knowing what the user entered in that
dialog however, except by monitoring individual properties of the
Inspector.CurrentItem for the Item.PropertyChange() event.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Outlook User" wrote in message
...
Is there a way when you click on the new, reply, forward, respond buttons
that the "Message Options Screen" could automatically pop up first so you
have to fill in that screen before you create/respond to a message?

I wanted to try to do this so I don't forget to set my options each time.
(I have some Rules and Alerts that run based off what is selected in the
Message Option screen).

If there is maybe a way to do this, I'm not a programmer or anything so I
would need detailed help on how to do it.

Thanks in advance for any help....


  #3  
Old May 23rd 08, 05:46 PM posted to microsoft.public.outlook.program_vba
Outlook user
external usenet poster
 
Posts: 10
Default Message Option Screen

Thank you - I appreciate your help!!!

"Ken Slovak - [MVP - Outlook]" wrote:

That dialog isn't exposed to the object model, so you'd have to simulate a
user clicking the menu buttons or ribbon controls to open the dialog,
depending on what version of Outlook you're talking about.

For Outlook 2003 or earlier you can get the Options button in an Inspector
using:

Dim oButton As Office.CommandBarButton
Set oButton = Inspector.CommandBars("Menu Bar").FindControl(Id:=5598,
Recursive:=True)
If Not (oButton Is Nothing) Then
oButton.Execute
End If

You'd have to trap the Inspectors.NewInspector event and in that event
instantiate an Inspector object declared WithEvents. Then you'd need to
handle the Inspector.Activate event and call the code I showed in the first
Inspector.Activate event that fired for that Inspector.

You wouldn't really have any way of knowing what the user entered in that
dialog however, except by monitoring individual properties of the
Inspector.CurrentItem for the Item.PropertyChange() event.

--
Ken Slovak
[MVP - Outlook]
http://www.slovaktech.com
Author: Professional Programming Outlook 2007.
Reminder Manager, Extended Reminders, Attachment Options.
http://www.slovaktech.com/products.htm


"Outlook User" wrote in message
...
Is there a way when you click on the new, reply, forward, respond buttons
that the "Message Options Screen" could automatically pop up first so you
have to fill in that screen before you create/respond to a message?

I wanted to try to do this so I don't forget to set my options each time.
(I have some Rules and Alerts that run based off what is selected in the
Message Option screen).

If there is maybe a way to do this, I'm not a programmer or anything so I
would need detailed help on how to do it.

Thanks in advance for any help....



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Message at welcome screen... MS Products User Outlook Express 5 February 20th 07 04:08 PM
Get blank message screen RLM Outlook Express 3 May 6th 06 02:17 AM
How do I add the Label color option to my appointments screen? townieflo Outlook - Calandaring 3 March 2nd 06 02:46 PM
OE open message full screen? Yolanda Martin Outlook Express 2 February 7th 06 11:58 PM
New Mail Message Causes Screen to Freeze The Shuntfield Outlook - General Queries 2 January 23rd 06 08:16 PM


All times are GMT +1. The time now is 09:28 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.