create an automatic merge to word

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

Guest

I have created a query to merge data to a word doc. I have attached a command button to open the file directly
Dim stAppName As String, stDB As String
stAppName = "C:\Program Files\Microsoft Office\Office11\Winword.exe"
stDB = "C:\Everest\CHPIndividual.doc"
Call Shell(stAppName & " " & stDB, 1)
 
Back
Top