Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Open a word file from access with vba 1

Status
Not open for further replies.

MrBaRRon

Programmer
Aug 8, 2003
39
IT
Hi everybody,

I have some troubles to open a word file from ACCESS in VBA.

The syntaxI use works only when Word is already opened.

Can U give me a code who works even if Word is closed

I mean a code that open word and open the file without troubles

Thank U
 
Have you tries the Create object?

Set acApp = CreateObject("Word.Application")
acApp.Visible = True
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top