J
John
Hi
I have the below code to create a word document programmatically. What would
be the late binding version of this code?
Many Thanks
Regards
Dim obj As Word.Application
Set obj = GetObject(, "Word.Application")
obj.ActiveDocument.Activate
With obj
.Selection.Text = "Some text..."
End With
obj.Visible = True
Set obj = Nothing
I have the below code to create a word document programmatically. What would
be the late binding version of this code?
Many Thanks
Regards
Dim obj As Word.Application
Set obj = GetObject(, "Word.Application")
obj.ActiveDocument.Activate
With obj
.Selection.Text = "Some text..."
End With
obj.Visible = True
Set obj = Nothing