4

我是 Excel 中 VBA 宏的初学者,这是 Outlook 中的第一次尝试,但这是我想要做的:

在 Outlook 2010 中,将宏分配给按钮,当按下该按钮时,

  1. 获取活动电子邮件的整个正文
  2. 将正文(包括所有格式和 html)复制到剪贴板
  3. 打开一个新的word文档
  4. 将剪贴板的内容粘贴到这个 word doc
  5. 清除剪贴板

到目前为止,我所拥有的只是下面的第 1 步和第 3 步(我想知道我是否在第 1 步中以错误的方式处理这个问题):

Sub pasteToWord()

    Dim activeMailMessage As Outlook.MailItem 'variable for email that will be copied.
    Dim activeBody
    Dim clearIt As String 'Intended to eventually clear clipboard.

'Code to get to the body of the active email.
    If TypeName(ActiveExplorer.Selection.Item(1)) = "MailItem" Then _
    Set activeMailMessage = ActiveExplorer.Selection.Item(1)
    activeBody = activeMailMessage.Body
    'MsgBox activeBody
    '^This displayed what I want in plaintext form,
    'so I think im on the right track

'Code to copy selection to clipboard

'Code to open new Word doc
    Set WordApp = CreateObject("Word.Application")
    WordApp.Documents.Add
    WordApp.Visible = True

'Code to paste contents of clipboard to active word document

'Code to clear clipboard

End Sub

任何填写上述空白的指导将不胜感激。

编辑:

感谢 David Zemens,这是迄今为止最接近的。我想我错过了一些参考,因为我的编译器不理解 ClearClipboard() 函数的“DataObject”。它确实复制并粘贴到带有格式的单词中,如下所示(尽管我不得不注释掉最后一个函数以避免错误):

Sub pasteToWord()

    Dim WordApp As Word.Application  'Need to link Microsoft Word Object library
    Dim wdDoc As Word.Document       'for these to be understood by compiler
    Dim activeMailMessage As Outlook.MailItem
    Dim activeBody As String

If TypeName(ActiveExplorer.Selection.Item(1)) = "MailItem" Then

    'Get a handle on the email
    Set activeMailMessage = ActiveExplorer.Selection.Item(1)

    'Ensure Word Application is open
    Set WordApp = CreateObject("Word.Application")

    'Make Word Application visible
    WordApp.Visible = True

    'Create a new Document and get a handle on it
    Set wdDoc = WordApp.Documents.Add

    'Copy the formatted text:
    activeMailMessage.GetInspector().WordEditor.Range.FormattedText.Copy

    'Paste to the word document
    wdDoc.Range.Paste

    'Clear the clipboard entirely:
     Call ClearClipBoard

End If

End Sub

Public Sub ClearClipBoard()
    Dim oData As New DataObject 'object to use the clipboard -- Compiler error, 
                                'I think I'm missing a reference here.

    oData.SetText Text:=Empty 'Clear
    oData.PutInClipboard 'take in the clipboard to empty it
End Sub
4

2 回答 2

4

此方法将从所选邮件项中复制格式化文本,并将其粘贴到 Word 文档中:

Dim WordApp As Word.Application
Dim wdDoc As Word.Document
Dim activeMailMessage As MailItem

If TypeName(ActiveExplorer.Selection.Item(1)) = "MailItem" Then

    'Get a handle on the email
    Set activeMailMessage = ActiveExplorer.Selection.Item(1)

    'Ensure Word Application is open
    Set WordApp = CreateObject("Word.Application")

    'Make Word Application visible
    WordApp.Visible = True

    'Create a new Document and get a handle on it
    Set wdDoc = WordApp.Documents.Add

    'Copy the formatted text:
    activeMailMessage.GetInspector().WordEditor.Range.FormattedText.Copy

    'Paste to the word document
    wdDocument.Range.Paste

    'Clear the clipboard entirely:
     Call ClearClipBoard

End If

注意完全清除剪贴板可以很容易地使用如下所述的功能完成:

Public Sub ClearClipBoard() 
    Dim oData   As New DataObject 'object to use the clipboard

    oData.SetText Text:=Empty 'Clear
    oData.PutInClipboard 'take in the clipboard to empty it
End Sub 
于 2015-01-12T17:56:48.900 回答
0

在处理 woth 项目主体时,您可以使用 Word 对象模型。

Word 在 Outlook 中用作电子邮件编辑器。Inspector 类的WordEditor属性从 Word 对象模型返回 Document 类的一个实例,该实例代表您的电子邮件正文。有关详细信息,请参阅第 17 章:使用项目实体

如您所见,无需使用任何额外的工具或类(剪贴板等)。您可以使用内置机制复制文档或按原样保存文档。

于 2015-01-12T18:04:23.547 回答