Distributable Files for Word Automation?

  • Thread starter Thread starter Charles Law
  • Start date Start date
C

Charles Law

Does anyone know which files need to be distributed with a VB.NET
application to enable Word automation on a m/c that does not have Word
installed? Is this even possible / permissible? I currently get the error
"File or assembly name Microsoft.office.interop.word or one of its
dependencies was not found".

TIA

Charles
 
Not possible. They require that the word version matching your library
you are coding against be on their computer.
 
Charles, your target machine does need to have Word installed if you wish to
use Word automation. All that VB.NET provides are the object definitions
that Word uses so your compiler can compile the program but to instanciate
and manipulte Word objects you need to have Word installed to get access to
the objects implementation programs.

Fred
 
Thanks Fred.

Charles


fred said:
Charles, your target machine does need to have Word installed if you wish
to
use Word automation. All that VB.NET provides are the object definitions
that Word uses so your compiler can compile the program but to instanciate
and manipulte Word objects you need to have Word installed to get access
to
the objects implementation programs.

Fred
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top