S
scorpion53061
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.
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
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
binding to late binding to prevent lots of issues occuring.
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
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