Reply
 
LinkBack Thread Tools Search this Thread Display Modes
  #1   Report Post  
Posted to microsoft.public.excel.programming
external usenet poster
 
Posts: 27,285
Default Excel and "send to" function

You seem to be going in the wrong direction. Check out this page for a mass
of information on emailing from excel.

http://www.rondebruin.nl/sendmail.htm

--
Regards,
Tom Ogilvy


"MikeFullam" wrote in message
...
Tom

Thanks for your help, I have got some code as below, but can't get the
Addresses to appear in the "To" area of "send this sheet" box. Do you
know
where I am going wrong?

Option Explicit

Sub SendSheet()
Dim objOutlook As Outlook.Application 'microsoft outlook object library
needs setting in references
Dim objOutlookRecip As Outlook.Recipient
Dim Address
Set Address = Range("address") 'range containing enail address for
distribution
With Application
.ScreenUpdating = False
On Error Resume Next
ActiveWorkbook.EnvelopeVisible = True
With .CommandBars("Send To")
Set objOutlookRecip = Address
'Set objOutlookRecip = ")
.Controls.Add Type:=msoControlButton, ID:=3708
With .Controls("Send Now")
.Execute
.Delete
End With
End With
.ScreenUpdating = True
End With
End Sub


Many thanks

Mike


"Tom Ogilvy" wrote:

No, to the best of my knowledge, Excel does not save the destination
addresses.

--
Regards,
Tom Ogilvy


"MikeFullam" wrote:

I am trying to use the send to function in Excel, for the first time,
which
works OK, But I thought that if I saved the file immediately afeter
sending
the file, Excel would retain the destination addresses. This does not
happen
with my version of Excel, should the addresses be retained if so how do
I
force this to happen?

Any comments greatly appreciated. Thanks

Mike



Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Excel 2003 giving annoying "Send/Don't Send" error when closing BigDaddyCool Excel Discussion (Misc queries) 0 January 29th 10 02:31 AM
"Send To" Function in File Menu t44 Excel Worksheet Functions 1 February 11th 09 07:01 PM
Excel - Golf - how to display "-2" as "2 Under" or "4"as "+4" or "4 Over" in a calculation cell Steve Kay Excel Discussion (Misc queries) 2 August 8th 08 01:54 AM
Signature missing when "send to" "mail recipient" Jim Tortorelli Excel Discussion (Misc queries) 2 September 21st 07 05:19 PM
Excel,how to turn off "send to" function when highlighting cells? DNAISH Excel Discussion (Misc queries) 4 September 6th 06 04:58 PM


All times are GMT +1. The time now is 02:29 PM.

Powered by vBulletin® Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©2004-2025 ExcelBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Excel"