【发布时间】:2010-04-07 10:45:38
【问题描述】:
我正在尝试使用此代码 sn-p 在 Outlook 2003 中获取所选文本
Sub SelectedTextDispaly()
On Error Resume Next
Err.Clear
Dim oText As TextRange
''# Get an object reference to the selected text range.
Set oText = ActiveWindow.Selection.TextRange
''# Check to see whether error occurred when getting text object
''# reference.
If Err.Number <> 0 Then
MsgBox "Invalid Selection. Please highlight some text " _
& "or select a text frame and run the macro again.", _
vbExclamation
End
End If
''# Display the selected text in a message box.
If oText.Text = "" Then
MsgBox "No Text Selected.", vbInformation
Else
MsgBox oText.Text, vbInformation
End If
End Sub
运行此宏时出现错误
---------------------------
Microsoft Visual Basic
---------------------------
Compile error:
User-defined type not defined
我需要添加任何引用来解决这个问题吗?
【问题讨论】:
标签: vba outlook-2003