Thanks for the binding reminder.
It seems to work without the reference.
In Excel VBA:
Code:
Sub lateBinding()
' no need to set reference to MS Word Object Library
Dim wrdApp As Object
Set wrdApp = CreateObject("Word.Application")
Dim wrdDoc As Object
Set wrdDoc = wrdApp.Documents.Add
wrdApp.Visible = True
wrdDoc.Sections(1).Range.Delete
With wrdDoc
.Paragraphs.Add
.Paragraphs(1).Range.Text = "Late Binding: no need to set reference to MS Word Object Library"
End With
Set wrdDoc = Nothing
Set wrdApp = Nothing
End Sub