![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
#1
|
|||
|
|||
![]()
I would like to add the received date to incoming emails by clicking a button
(or key combination) on the open, received email. I want to position it in front of the subject text. For example:- Change Subject: Software Problems To Subject: 2009_01_11_14_12 Software Problems. Thanks, John -- John Whyte |
Ads |
#2
|
|||
|
|||
![]()
The macro called by the button would use code something like this:
Sub myCode() Dim oMail As Outlook.MailItem Set oMail = Application.ActiveInspector.CurrentItem oMail.Subject = CStr(oMail.ReceivedTime) & " " & oMail.Subject oMail.Save End Sub -- 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 "JohnW" wrote in message ... I would like to add the received date to incoming emails by clicking a button (or key combination) on the open, received email. I want to position it in front of the subject text. For example:- Change Subject: Software Problems To Subject: 2009_01_11_14_12 Software Problems. Thanks, John -- John Whyte |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Manually change 'Date Sent', 'Date received' in messages ... how ? | baxe0 | Outlook and VBA | 2 | September 15th 15 02:02 PM |
Change subject line in received email or saved email | rburley | Outlook Express | 4 | April 13th 07 02:49 PM |
Manually change 'Date Sent', 'Date received' in messages ... how ? | baxe0 | Outlook - Using Forms | 0 | March 21st 07 03:46 PM |
Calcualting the time between email received date and reply date | Shanks | Outlook - General Queries | 3 | February 22nd 07 04:11 AM |
Best way to start a program when specific email received? | Bill | Outlook and VBA | 6 | February 1st 07 03:44 PM |