Automation

T

Tru

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.
 
M

Michel Walsh

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
 
Top