Hi All
I come across code (from a link from the message board) for sending a range in Excel via outlook. Although it said just paste into a module, it gives me the above error. The code is here and its the following line that it bombs out of:
Does anyone have a quick solution?
Kindest Regards
Peter
I come across code (from a link from the message board) for sending a range in Excel via outlook. Although it said just paste into a module, it gives me the above error. The code is here and its the following line that it bombs out of:
ActiveWorkbook.PublishObjects.Add(4, strTempFilePath, _
rngeSend.Parent.Name, rngeSend.Address, 0, "This is a test", "").Publish True
Code:
Private Sub CommandButton1_Click()
'Sends a specified range in an Outlook message and retains Excel formatting
'Written by Daniel Klann '2002
'Dimension variables
Dim oOutlookApp As Object, oOutlookMessage As Object
Dim oFSObj As Object, oFSTextStream As Object
Dim rngeSend As Range, strHTMLBody As String, strTempFilePath As String
'Select the range to be sent
On Error Resume Next
Set rngeSend = Application.InputBox("Please select range you wish to send.", , , , , , , 8)
If rngeSend Is Nothing Then Exit Sub 'User pressed Cancel
On Error GoTo 0
'Get the temp folder path
Set oFSObj = CreateObject("Scripting.FilesystemObject")
strTempFilePath = oFSObj.GetSpecialFolder(2)
'strTempFilePath = "O:\Daily Sales Figures"
strTempFilePath = strTempFilePath & "\DailySalesFigures.htm"
'Now create the HTML file - NOTE! xlSourceRange and xlHtmlStatic have been replaced by their
'numeric values due to a potential error (unexplained) noted by Ivan F Moala 15/5/03
ActiveWorkbook.PublishObjects.Add(4, strTempFilePath, _
rngeSend.Parent.Name, rngeSend.Address, 0, "This is a test", "").Publish True
'Create an instance of Outlook (or use existing instance if it already exists
Set oOutlookApp = CreateObject("Outlook.Application")
'Create a mail item
Set oOutlookMessage = oOutlookApp.CreateItem(0)
'Open the HTML file using the FilesystemObject into a TextStream object
Set oFSTextStream = oFSObj.OpenTextFile(strTempFilePath, 1)
'Now set the HTMLBody property of the message to the text contained in the TextStream object
strHTMLBody = oFSTextStream.ReadAll
'By default the range will be centred. This line left aligns it and you can
'comment it out if you want the range centred.
strHTMLBody = Replace(strHTMLBody, "align=center", "align=left", , , vbTextCompare)
oOutlookMessage.HTMLBody = strHTMLBody
oOutlookMessage.Display
End Sub
Does anyone have a quick solution?
Kindest Regards
Peter