RangetoHTML子例程突然停止工作

时间:2019-05-20 11:44:35

标签: excel vba

我使用rondebruin.nl中的RangetoHTML-Sub将选定的范围粘贴到Outlook中。它已经运行了好几个月,但是突然停止了。几天前它最后一次正常工作,而我不知道在此期间可能发生了什么。难道没有对Excel 2010进行过更新,可能会进行某些更改吗?

这是我一直在使用的代码:

    Sub SendEmailToStores()


    Dim SendEmail   As Variant

    Dim rng As Range
    Dim OutApp As Object
    Dim OutMail As Object

    Dim strBody As String
    Dim strSignature As String


    Set rng = Nothing
    On Error Resume Next
    'Only the visible cells in the selection

    Worksheets("TEMP").Activate
    last_row = ActiveSheet.Cells(Rows.Count, 2).End(xlUp).Row
    last_col = ActiveSheet.Cells(1, Columns.Count).End(xlToLeft).Column

    Set rng = Sheets("TEMP").Range(Cells(1, 1), Cells(last_row, last_col)).SpecialCells(xlCellTypeVisible)
'    Set rng = Sheets("TEMP").Range("A1:F3").SpecialCells(xlCellTypeVisible)

    On Error GoTo 0


    If rng Is Nothing Then
        MsgBox "The selection is not a range or the sheet is protected" & _
               vbNewLine & "please correct and try again.", vbOKOnly
        Exit Sub
    End If


    With Application
        .EnableEvents = False
        .ScreenUpdating = False
    End With


    Set OutApp = CreateObject("Outlook.Application")
    Set OutMail = OutApp.CreateItem(0)


    On Error Resume Next

    strBody = "Please will you order the following for us:" & "

"
    strSignature = "

" & "Thank you"

    SendEmail = MsgBox("Would you like to review the order email to stores before sending it?", vbYesNoCancel, "Review email")
        With OutMail
        .To = {email address}
        .CC = ""
        .BCC = ""
        .Subject = "Canine Genetics Order"
        .HTMLBody = strBody & RangetoHTML(rng) & strSignature
            If SendEmail = vbCancel Then Exit Sub
            If SendEmail = vbYes Then
             'compile but don't send email
                .Display
            End If
            If SendEmail = vbNo Then
             'compile and send email
                .Send   'or use .Display
            End If
        End With

    On Error GoTo 0


    With Application
        .EnableEvents = True
        .ScreenUpdating = True
    End With


    Set OutMail = Nothing
    Set OutApp = Nothing




End Sub


Function RangetoHTML(rng As Range)
' Changed by Ron de Bruin 28-Oct-2006
' Working in Office 2000-2016
    Dim fso As Object
    Dim ts As Object
    Dim TempFile As String
    Dim TempWB As Workbook



    TempFile = Environ$("temp") & "\" & Format(Now, "dd-mm-yy h-mm-ss") & ".htm"


    'Copy the range and create a new workbook to past the data in
    rng.Copy
    Set TempWB = Workbooks.Add(1)
    With TempWB.Sheets(1)
        .Cells(1).PasteSpecial Paste:=8
        .Cells(1).PasteSpecial xlPasteValues, , False, False
        .Cells(1).PasteSpecial xlPasteFormats, , False, False
        .Cells(1).Select
        Application.CutCopyMode = False
        On Error Resume Next
        .DrawingObjects.Visible = True
        .DrawingObjects.Delete
        On Error GoTo 0
    End With


    'Publish the sheet to a htm file
    With TempWB.PublishObjects.Add( _
         SourceType:=xlSourceRange, _
         Filename:=TempFile, _
         Sheet:=TempWB.Sheets(1).Name, _
         Source:=TempWB.Sheets(1).UsedRange.Address, _
         HtmlType:=xlHtmlStatic)
        .Publish (True)
    End With


    'Read all data from the htm file into RangetoHTML
    Set fso = CreateObject("Scripting.FileSystemObject")
    Set ts = fso.GetFile(TempFile).OpenAsTextStream(1, -2)
    RangetoHTML = ts.readall
    ts.Close
    RangetoHTML = Replace(RangetoHTML, "align=center x:publishsource=", _
                          "align=left x:publishsource=")


    'Close TempWB
    TempWB.Close savechanges:=False


    'Delete the htm file we used in this function
    Kill TempFile


    Set ts = Nothing
    Set fso = Nothing
    Set TempWB = Nothing

End Function

通过逐行遍历代码,我意识到它到达RangetoHTML函数中的这一特定点,然后完全跳过该函数的其余部分,并继续使用SendEmailToStores子例程。因此,“。Publish(True)”行及其后的所有内容(在函数内)都不会发生。我认为这意味着“ With”行中的某些内容会引起问题。

With TempWB.PublishObjects.Add( _
     SourceType:=xlSourceRange, _
     Filename:=TempFile, _
     Sheet:=TempWB.Sheets(1).Name, _
     Source:=TempWB.Sheets(1).UsedRange.Address, _
     HtmlType:=xlHtmlStatic)
        .Publish (True)
    End With

1 个答案:

答案 0 :(得分:1)

可能还有其他问题,但以下是常见的不合格范围。

Set rng = Sheets("TEMP").Range(Cells(1, 1), Cells(last_row, last_col)).SpecialCells(xlCellTypeVisible)

以上内容只能在Temp工作表的私有代码表上可靠地工作;不是公共模块。

组成Cells的{​​{1}}必须与Range属于同一工作表。

Range