Opening Word in Access then saving Doc in Access

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

How do I open a Word Document from an Access form then have a command that
saves the Altered Word Document in an Access table and then finally continune
onto anotheer Access form??
 
You can use the Shell() command to open an instance of Word.
I don't recommend that you save entire Word.docs in Access tables. Just
save the path and filename instead.

Either way, this will require some VBA or Macro code to perform.
 
You open the WORD document as an object, and you use automation to access
the content of the document. You then save this content into an appropriate
field in the database. There's a longer discussion here:
http://vbadvisor.com/doc/13667
The examples aren't exactly what you want, but you should be able to modify
them.
 

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

Similar Threads


Back
Top