【问题标题】:RangetoHTML subroutine suddenly stopped workingRangetoHTML 子程序突然停止工作
【发布时间】:2019-10-06 18:57:19
【问题描述】:

我使用来自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

【问题讨论】:

    标签: excel vba


    【解决方案1】:

    可能还有其他问题,但您在下面有一个常见的不合格范围。

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

    以上内容仅适用于 Temp 工作表的私有代码表;不是公共模块。

    构成RangeCells 需要与Range 属于同一个工作表。

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

    【讨论】:

    • 感谢您的建议,但没有任何影响。
    猜你喜欢
    • 1970-01-01
    • 1970-01-01
    • 1970-01-01
    • 2017-08-22
    • 2021-02-01
    • 2016-12-29
    • 2018-05-09
    • 2015-12-07
    相关资源
    最近更新 更多