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

Outlook 2007 to Attach a File in an Existing Message



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old February 2nd 09, 11:06 PM posted to microsoft.public.outlook.program_vba
Gary Petersen
external usenet poster
 
Posts: 9
Default Outlook 2007 to Attach a File in an Existing 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


Ads
  #2  
Old February 2nd 09, 11:38 PM posted to microsoft.public.outlook.program_vba
Dmitry Streblechenko
external usenet poster
 
Posts: 2,116
Default Outlook 2007 to Attach a File in an Existing Message

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  
Old February 3rd 09, 01:33 AM posted to microsoft.public.outlook.program_vba
Gary Petersen
external usenet poster
 
Posts: 9
Default Outlook 2007 to Attach a File in an Existing Message

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
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
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


All times are GMT +1. The time now is 11:17 PM.


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.