Dim WordApp As Object
Dim WordDoc As Object
' this code assumes Word is running
On Error GoTo CreateWordApp
Set WordApp = GetObject(, "Word.Application")
Set WordDoc = wordApp.Documents.Open("path\filename")
CreateWordApp:
' This code launches Word if it was not running
Set WordApp = CreateObject("Word.Application")
Resume Next

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
>I can only find how to open an excel reports, but how can I create a macro
>in
> Access where I can press a button and open a Word document.