Automation

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

Guest

Is there a way to create a table for my Word Documents then I can use a
command button from a form to open the document oppose to individually
creating a command button for each document.
 
Hi,


You can use something like:


Dim oApp As Word.Application

Set oApp = CreateObject("Word.Application")
oApp.Visible = True
oApp.Documents.Open "c:\My Documents\myFile.doc"





Hoping it may help,
Vanderghast, Access MVP
 

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