Have you thought about using late binding instead of early binding? It's
very easy to implement, but could cause problems if the user has an older
version.
Just change all your DIM references for the word object to Object.
ex.
Dim Doc as word.document
To
Dim do as object
HTH
Cal
" wrote:
Hey--Is there any way to permanently select certain references from the
VB Project library? I want to be able to always reference microsoft
word at all times in VB, rather than have my users tell the VB editor
that they would like to reference word...
Thanks,
Abe