Does any know how to open word files from an access form control?

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

Guest

I am creating a database in access and want to create a control button on the
switchboard form that allows me to open a word file. Do you know if this is
possible? I know its possible to open the "word" application.
 
Regie said:
I am creating a database in access and want to create a control
button on the switchboard form that allows me to open a word file. Do
you know if this is possible? I know its possible to open the "word"
application.

Application.FollowHyperLink "Path to file"
 
Regie

You could also use the following:

Dim stAppName As String
stAppName = "winword.exe c:\TempPhone.doc"
Call Shell(stAppName, 1)
 
Back
Top