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
 
Back
Top