Is it possible to do that??
I need your help!!!
Isabelle
Printable View
Is it possible to do that??
I need your help!!!
Isabelle
You can add a reference to a COM object at run time with late binding i.e.
Dim wrdObj as Object
set wrdObj = CreateObject("Word.Application")
will dynamically add a reference to Microsoft Word (assuming its installed on the users machine - otherwise a run time error).