在Word VBA你可以設置和使用Selection.MoveLeft移動光標位置,Selection.MovRight等等如何通過Excel的VBA使用的話選擇方法
然而在試圖使用相同的Excel VBA中的方法我得到一個錯誤,說「對象不支持此屬性或方法。」
我已導入Word對象庫引用。
我怎樣才能夠在Excel應用程序上使用VBA移動Word文檔上的光標位置。任何幫助將不勝感激。
代碼: 設置文檔= ActiveDocument.Content
With Doc.Find
.Execute FindText:="*", ReplaceWith:="NEW*"
End With
Selection.HomeKey Unit:=wdStory
Selection.MoveDown Unit:=wdParagraph, Count:=11
Selection.MoveRight Unit:=wdWord, Count:=4
Selection.MoveRight Unit:=wdWord, Count:=2, Extend:=wdExtend
Selection.Font.Bold = False
Selection.Font.Name = "Arial"
Selection.Font.Size = 9
您是否創建了一個單詞應用程序對象並將其與Word掛鉤?顯示其餘代碼可能會很有用。例如:http://software-solutions-online.com/vba-opening-word-from-excel/ –