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

Re: Late binding code by Doug

Doug
Mon May 12 22:36:46 PDT 2008

Replace

Dim obj As Word.Application

with

Dim obj As Object


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"John" <info@nospam.infovis.co.uk> wrote in message
news:ubiNXdJtIHA.3680@TK2MSFTNGP05.phx.gbl...
> 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
>
>
>