Connecting Tech Pros Worldwide Help | Site Map

Opening MS Word File from Access Form

  #1  
Old November 12th, 2005, 10:23 PM
Tony Schoeffler
Guest
 
Posts: n/a
I have an Access application where it would desirable to open a word
file directly from an Access Form. I have been able to open the Word
application, but I have not been able to have it open with the desired
file. Any help or sample code would be appreciated.

  #2  
Old November 12th, 2005, 10:23 PM
Dean Covey
Guest
 
Posts: n/a

re: Opening MS Word File from Access Form


In your table, create a field for hyperlinks. Populate that field
accordingly and make it available on the approriate form.

--
Dean Covey
www.coveyaccounting.com

MS-Office Certified:
http://www.microsoft.com/learning/mc...st/default.asp

"Tony Schoeffler" <Hugh.A.Schoeffler@lerc.nasa.gov> wrote in message
news:c5p61s$pje$1@sulawesi-fi.lerc.nasa.gov...[color=blue]
> I have an Access application where it would desirable to open a word
> file directly from an Access Form. I have been able to open the Word
> application, but I have not been able to have it open with the desired
> file. Any help or sample code would be appreciated.
>[/color]


  #3  
Old November 12th, 2005, 10:26 PM
Mike Preston
Guest
 
Posts: n/a

re: Opening MS Word File from Access Form


On Fri, 16 Apr 2004 20:44:28 GMT, Hugh.A.Schoeffler@lerc.nasa.gov
(Tony Schoeffler) wrote:
[color=blue]
>I have an Access application where it would desirable to open a word
>file directly from an Access Form. I have been able to open the Word
>application, but I have not been able to have it open with the desired
>file. Any help or sample code would be appreciated.[/color]

Post the code you have used to open Word. Usually, all you need to do
is add to the documents collection of the Word object. For example,
if you used:

Dim objWord as object
Set objWord = CreateObject("Word.Application")
objWord.visible = True
objWord.documents.open "c:\mydirectory\myworddocument.doc"

mike

Closed Thread


Similar Threads
Thread Thread Starter Forum Replies Last Post
Crystal Report or MS Word? jmar answers 5 October 1st, 2006 10:25 PM
Req help: How do I open a MS Word file from Access? Peppie answers 4 September 11th, 2006 09:35 PM
Opening a mail doc from Access - code problem Andy Davis answers 1 November 13th, 2005 02:30 PM
Opening MS Word File from Access Form Tony Schoeffler answers 2 November 12th, 2005 10:53 PM