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

Macro to kick in every time I send a message



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old May 26th 06, 07:19 AM posted to microsoft.public.outlook.program_vba
Jyoti
external usenet poster
 
Posts: 1
Default Macro to kick in every time I send a message

Hello,

I have a macro that is supposed to run every time I send a message. It asks
me whether I want to keep a copy in the sent items folder or not. My problem
is that although the macro runs most of the times, but sometimes when I reply
to or forward a message I have received from someone, the macro is not
activated.

Also, I would like to add to the macro so that it asks if I want to track
delivery and read receipts.

Can you help me please?

Thanks,
Jyoti.
  #2  
Old May 26th 06, 08:49 AM posted to microsoft.public.outlook.program_vba
Michael Bauer
external usenet poster
 
Posts: 435
Default Macro to kick in every time I send a message

Am Thu, 25 May 2006 23:19:01 -0700 schrieb Jyoti:

2) In your macro you can set the properties
OriginatorDeliveryReportRequested and ReadReceiptReuested = True.

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.vbOffice.net --


Hello,

I have a macro that is supposed to run every time I send a message. It

asks
me whether I want to keep a copy in the sent items folder or not. My

problem
is that although the macro runs most of the times, but sometimes when I

reply
to or forward a message I have received from someone, the macro is not
activated.

Also, I would like to add to the macro so that it asks if I want to track
delivery and read receipts.

Can you help me please?

Thanks,
Jyoti.

  #3  
Old May 26th 06, 04:15 PM posted to microsoft.public.outlook.program_vba
Paul M
external usenet poster
 
Posts: 12
Default Macro to kick in every time I send a message

A similar question...I pasted code into ThisOutlookSession yesterday that
someone shared, code that prompts after every "send" to ask what folder the
sent message should go in to (vs. always going into Sent Items). It worked
fine yesterday morning. Then I shut down and restarted my PC later in the day
and the code no longer worked. I use Outlook 2003 on Win XP.

I don't think this code is a macro, since selecting Tools - Macros... in VBA
shows a blank list. The code, though, is still there, but as I said, does
nothing.

How do I "restart" it? Is there a way to have it "always on?"

Please understand that I am not a programmer, so I need advice in
non-technical terms.

Thank you,

Paul M.
"Jyoti" wrote:

Hello,

I have a macro that is supposed to run every time I send a message. It asks
me whether I want to keep a copy in the sent items folder or not. My problem
is that although the macro runs most of the times, but sometimes when I reply
to or forward a message I have received from someone, the macro is not
activated.

Also, I would like to add to the macro so that it asks if I want to track
delivery and read receipts.

Can you help me please?

Thanks,
Jyoti.

  #4  
Old May 26th 06, 04:23 PM posted to microsoft.public.outlook.program_vba
Paul M
external usenet poster
 
Posts: 12
Default Never mind - fixed!

Looking through other threads, I saw comments to chance Macro security to
Medium. When I did that, Outlook opens with a query regarding whether I want
macros to run. When I say "yes," the app works.

Thanks for all the posts, folks. - PDM

"Paul M" wrote:

A similar question...I pasted code into ThisOutlookSession yesterday that
someone shared, code that prompts after every "send" to ask what folder the
sent message should go in to (vs. always going into Sent Items). It worked
fine yesterday morning. Then I shut down and restarted my PC later in the day
and the code no longer worked. I use Outlook 2003 on Win XP.

I don't think this code is a macro, since selecting Tools - Macros... in VBA
shows a blank list. The code, though, is still there, but as I said, does
nothing.

How do I "restart" it? Is there a way to have it "always on?"

Please understand that I am not a programmer, so I need advice in
non-technical terms.

Thank you,

Paul M.
"Jyoti" wrote:

Hello,

I have a macro that is supposed to run every time I send a message. It asks
me whether I want to keep a copy in the sent items folder or not. My problem
is that although the macro runs most of the times, but sometimes when I reply
to or forward a message I have received from someone, the macro is not
activated.

Also, I would like to add to the macro so that it asks if I want to track
delivery and read receipts.

Can you help me please?

Thanks,
Jyoti.

  #5  
Old May 27th 06, 11:04 AM posted to microsoft.public.outlook.program_vba
Michael Bauer
external usenet poster
 
Posts: 435
Default Macro to kick in every time I send a message

Am Fri, 26 May 2006 08:15:02 -0700 schrieb Paul M:

Maybe you need to set the security down to medium?

--
Viele Gruesse / Best regards
Michael Bauer - MVP Outlook
-- www.vbOffice.net --


A similar question...I pasted code into ThisOutlookSession yesterday that
someone shared, code that prompts after every "send" to ask what folder

the
sent message should go in to (vs. always going into Sent Items). It worked
fine yesterday morning. Then I shut down and restarted my PC later in the

day
and the code no longer worked. I use Outlook 2003 on Win XP.

I don't think this code is a macro, since selecting Tools - Macros... in

VBA
shows a blank list. The code, though, is still there, but as I said, does
nothing.

How do I "restart" it? Is there a way to have it "always on?"

Please understand that I am not a programmer, so I need advice in
non-technical terms.

Thank you,

Paul M.
"Jyoti" wrote:

Hello,

I have a macro that is supposed to run every time I send a message. It

asks
me whether I want to keep a copy in the sent items folder or not. My

problem
is that although the macro runs most of the times, but sometimes when I

reply
to or forward a message I have received from someone, the macro is not
activated.

Also, I would like to add to the macro so that it asks if I want to track
delivery and read receipts.

Can you help me please?

Thanks,
Jyoti.

  #6  
Old May 27th 06, 02:51 AM posted to microsoft.public.outlook.program_vba
skatonni via OfficeKB.com
external usenet poster
 
Posts: 4
Default Macro to kick in every time I send a message

This code displays the dialog box to set these options.

http://www.vboffice.net/sample.html?...1&cmd=showitem

Jyoti wrote:
Hello,

I have a macro that is supposed to run every time I send a message. It asks
me whether I want to keep a copy in the sent items folder or not. My problem
is that although the macro runs most of the times, but sometimes when I reply
to or forward a message I have received from someone, the macro is not
activated.

Also, I would like to add to the macro so that it asks if I want to track
delivery and read receipts.

Can you help me please?

Thanks,
Jyoti.


--
Message posted via OfficeKB.com
http://www.officekb.com/Uwe/Forums.a...g-vba/200605/1
 




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
allow me to run macro time initiated hirosh Outlook and VBA 1 April 1st 06 06:40 AM
Macro within a Mail Message Tia Outlook and VBA 1 February 7th 06 02:47 PM
Opening Outlook is kick starting windows messenger? JB Outlook - General Queries 1 January 29th 06 09:54 AM
Troubles adding a macro to Mail Message - help please [email protected] Outlook and VBA 4 January 26th 06 11:01 PM
Macro to selectively delete message from POP3 server alainr Outlook and VBA 3 January 20th 06 12:42 PM


All times are GMT +1. The time now is 09:53 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.