![]() |
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'd like to create a macro in Outlook 2007 to attach a specific file to an
open message. I've been searching and have the following bit of code, but it creates a new blank message with the file attached. I'm close, but am not sure how to get this to work in the existing open message. Here's the code I've got so far. Sub Attach_MyFile() Set NewItem = Application.CreateItem(0) NewItem.Attachments.Add "\\path\filename" NewItem.Display End Sub \\path\filename would be changed to the specific file I want to attach. It works just fine, but creates a new message. What would I change to add this file attachment to the existing open message? In other words, what is the command that would be like Application.EditItem(0)? :-) Thanks for any help. I do appreciate it. -- Gary Petersen |
Ads |
#2
|
|||
|
|||
![]()
Sub Attach_MyFile()
Set NewItem = Application.ActiveInspector.CurrentItem NewItem.Attachments.Add "\\path\filename" End Sub -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Gary Petersen" wrote in message ... I'd like to create a macro in Outlook 2007 to attach a specific file to an open message. I've been searching and have the following bit of code, but it creates a new blank message with the file attached. I'm close, but am not sure how to get this to work in the existing open message. Here's the code I've got so far. Sub Attach_MyFile() Set NewItem = Application.CreateItem(0) NewItem.Attachments.Add "\\path\filename" NewItem.Display End Sub \\path\filename would be changed to the specific file I want to attach. It works just fine, but creates a new message. What would I change to add this file attachment to the existing open message? In other words, what is the command that would be like Application.EditItem(0)? :-) Thanks for any help. I do appreciate it. -- Gary Petersen |
#3
|
|||
|
|||
![]()
Thank you, Dmitry. I tried it on my home laptop and it worked perfectly.
I'm sure that will get me fixed up tomorrow on my work laptop. I really appreciate the help. -- Gary Petersen "Dmitry Streblechenko" wrote: Sub Attach_MyFile() Set NewItem = Application.ActiveInspector.CurrentItem NewItem.Attachments.Add "\\path\filename" End Sub -- Dmitry Streblechenko (MVP) http://www.dimastr.com/ OutlookSpy - Outlook, CDO and MAPI Developer Tool - "Gary Petersen" wrote in message ... I'd like to create a macro in Outlook 2007 to attach a specific file to an open message. I've been searching and have the following bit of code, but it creates a new blank message with the file attached. I'm close, but am not sure how to get this to work in the existing open message. Here's the code I've got so far. Sub Attach_MyFile() Set NewItem = Application.CreateItem(0) NewItem.Attachments.Add "\\path\filename" NewItem.Display End Sub \\path\filename would be changed to the specific file I want to attach. It works just fine, but creates a new message. What would I change to add this file attachment to the existing open message? In other words, what is the command that would be like Application.EditItem(0)? :-) Thanks for any help. I do appreciate it. -- Gary Petersen |
Thread Tools | Search this Thread |
Display Modes | |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
attach file with automation in Outlook | huub van helderen | Outlook and VBA | 4 | May 15th 07 09:13 PM |
Cannot Attach File with Outlook 2007 | Rob Schneider | Outlook - General Queries | 1 | April 7th 07 02:14 PM |
Outlook 2003 attach file very slow, Pls help! | Ben | Outlook - General Queries | 1 | October 8th 06 08:39 PM |
How do I attach a file in a message created from templates | Avi | Outlook - Using Forms | 3 | September 7th 06 04:47 PM |