G
Guest
Hello
i have an application that use automation to open word using a specified-personalized word template, filling it with osme data trough Word bookmarks. Anythign was fine until i decided to move from early binding to late bindign because i'm working on upgrading this application and i haven't word2000 (i have XP) while my clinet has. So i rcan reference on my machine only word 10.0 library, while my client needs word 9.0. To solve this issue i decided to try late binding
The problem is that runnning the code below give me an error (#429) saying" Activex component can't create the object
Any suggestion
thanks
rocc
here is the code i have used:______________________
Dim objword As Objec
Set objword = CreateObject(" Word.document"
With objwor
.Visible = Fals
.Documents.Add ("\\server\dati\preventivi\preventivo.dot"
.Visible = Tru
End With
i have an application that use automation to open word using a specified-personalized word template, filling it with osme data trough Word bookmarks. Anythign was fine until i decided to move from early binding to late bindign because i'm working on upgrading this application and i haven't word2000 (i have XP) while my clinet has. So i rcan reference on my machine only word 10.0 library, while my client needs word 9.0. To solve this issue i decided to try late binding
The problem is that runnning the code below give me an error (#429) saying" Activex component can't create the object
Any suggestion
thanks
rocc
here is the code i have used:______________________
Dim objword As Objec
Set objword = CreateObject(" Word.document"
With objwor
.Visible = Fals
.Documents.Add ("\\server\dati\preventivi\preventivo.dot"
.Visible = Tru
End With