提问人:Gwen Taylor 提问时间:3/29/2021 更新时间:3/29/2021 访问量:170
在 Excel 中选择要通过电子邮件发送的范围时需要 VBA 运行时错误 424 对象 [复制]
VBA runtime error 424 object required when selecting range to send by e-mail in Excel [duplicate]
问:
谁能帮忙?我有VBA在通过电子邮件发送附件的电子表格上选择一个范围。如果我在选择范围时单击取消,我会得到一个运行时 424 对象。有没有我可以添加的代码来用消息框覆盖它。谢谢。
Sub SendRange()
Dim xFile As String
Dim xFormat As Long
Dim Wb As Workbook
Dim Wb2 As Workbook
Dim Ws As Worksheet
Dim FilePath As String
Dim FileName As String
Dim OutlookApp As Object
Dim OutlookMail As Object
Dim WorkRng As Range
xTitleId = "Example"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
Application.ScreenUpdating = False
Application.DisplayAlerts = False
Set Wb = Application.ActiveWorkbook
Wb.Worksheets.Add
Set Ws = Application.ActiveSheet
WorkRng.Copy Ws.Cells(1, 1)
Ws.Copy
Set Wb2 = Application.ActiveWorkbook
Select Case Wb.FileFormat
Case xlOpenXMLWorkbook:
xFile = ".xlsx"
xFormat = xlOpenXMLWorkbook
Case xlOpenXMLWorkbookMacroEnabled:
If Wb2.HasVBProject Then
xFile = ".xlsm"
xFormat = xlOpenXMLWorkbookMacroEnabled
Else
xFile = ".xlsx"
xFormat = xlOpenXMLWorkbook
End If
Case Excel8:
xFile = ".xls"
xFormat = Excel8
Case xlExcel12:
xFile = ".xlsb"
xFormat = xlExcel12
End Select
FilePath = Environ$("temp") & "\"
FileName = Wb.Name & Format(Now, "dd-mmm-yy h-mm-ss")
Set OutlookApp = CreateObject("Outlook.Application")
Set OutlookMail = OutlookApp.CreateItem(0)
Wb2.SaveAs FilePath & FileName & xFile, FileFormat:=xFormat
With OutlookMail
.To = "[email protected]"
.CC = ""
.BCC = ""
.Subject = "Test"
.Body = "Hi there."
.Attachments.Add Wb2.FullName
.Send
End With
Wb2.Close
Kill FilePath & FileName & xFile
Set OutlookMail = Nothing
Set OutlookApp = Nothing
Ws.Delete
Application.DisplayAlerts = True
Application.ScreenUpdating = True
End Sub
enter code here
答:
0赞
VBasic2008
3/29/2021
#1
当范围时取消Application.InputBox
而不是
Dim WorkRng As Range
xTitleId = "Example"
Set WorkRng = Application.Selection
Set WorkRng = Application.InputBox("Range", xTitleId, WorkRng.Address, Type:=8)
尝试
xTitleId = "Example"
Dim drg As Range ' Default Range
If TypeName(Selection) = "Range" Then
Set drg = Application.Selection
Else
Set drg = Range("A1")
End If
On Error Resume Next
Dim WorkRng As Range
Set WorkRng = Application.InputBox("Range", xTitleId, drg.Address, Type:=8)
On Error GoTo 0
If WorkRng Is Nothing Then
MsgBox "You canceled.", vbExclamation, "Canceled By User"
Exit Sub
End If
'MsgBox "Work Range Address: " & WorkRng.Address, vbInformation, "Address"
评论
0赞
GSerg
3/29/2021
workrng
永远不会.Nothing
0赞
VBasic2008
3/29/2021
你是对的。有没有简单的解决方法,或者我只是做得太过分了?
0赞
GSerg
3/29/2021
请参阅重复链接。
上一个:Excel 匹配条件格式
下一个:劣质陈述
评论