S
scorpion53061
I am sorry for this but I am not getting an answer elsewhere so I thought I
would try here.
It seems the safer way to go prior to deployment is to change my early
binding to late binding to prevent lots of issues occuring, especially those
on Office versions other than mine. (I have 2003). such as
Public WordApp As Object = CreateObject("Word.Application")
Public oDoc As Object = CreateObject("Word.Document")
instead of
'Public WordApp As New Word.Application
'Public oDoc As Word.Document
This occured because late last night a client reported this error
http://support.microsoft.com/default.aspx?scid=kb;en-us;292744
Does this mean I can remove the references to the Word object library and
such?
I have run into one issue concerning this.
When I tried to do
Public dlg as Object = Creatobject("Word.Dialog")
instead of
'Public dlg As Word.Dialog
it says it cannot create the active x component. How shall I use late
binding with this?
I much appreciate your answers
would try here.
It seems the safer way to go prior to deployment is to change my early
binding to late binding to prevent lots of issues occuring, especially those
on Office versions other than mine. (I have 2003). such as
Public WordApp As Object = CreateObject("Word.Application")
Public oDoc As Object = CreateObject("Word.Document")
instead of
'Public WordApp As New Word.Application
'Public oDoc As Word.Document
This occured because late last night a client reported this error
http://support.microsoft.com/default.aspx?scid=kb;en-us;292744
Does this mean I can remove the references to the Word object library and
such?
I have run into one issue concerning this.
When I tried to do
Public dlg as Object = Creatobject("Word.Dialog")
instead of
'Public dlg As Word.Dialog
it says it cannot create the active x component. How shall I use late
binding with this?
I much appreciate your answers