2015-05-15 73 views

回答

0

您可以使用Word對象來執行此操作。請參閱下面的代碼。

Dim oWord As Object 
Dim oDoc As Object 
Set oWord = CreateObject("word.application") 
Set oDoc = oWord.Documents.Add 
oWord.Selection.Paste 
oWord.Visible = True 

Refer this link for more details