Creating MS Word readable reports

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

Guest

I would like to have an Access application that will output either a MS Word .doc file or some other format readable by MS Word. Is this possible using Visual Basic in Access? My ultimate goal is to have the output is a format readable by people who don't have MS Access
THanks.
 
You can use the word object, you will have to reference it first.


jc59 said:
I would like to have an Access application that will output either a MS
Word .doc file or some other format readable by MS Word. Is this possible
using Visual Basic in Access? My ultimate goal is to have the output is a
format readable by people who don't have MS Access.
 
You might want to have a look at MVP Stephen Lebans' solution at:

http://www.lebans.com/ReportUtilities.htm

--

Cheryl Fischer, MVP Microsoft Access
Law/Sys Associates, Houston, TX


jc59 said:
I would like to have an Access application that will output either a MS
Word .doc file or some other format readable by MS Word. Is this possible
using Visual Basic in Access? My ultimate goal is to have the output is a
format readable by people who don't have MS Access.
 
I would like to have an Access application that will output either a MS Word .doc file or some other format readable by MS Word. Is this possible using Visual Basic in Access? My ultimate goal is to have the output is a format readable by people who don't have MS Access.
THanks.

A couple of options:

- Export a Report to a .rtf (rich text format) file. This can be read
by Word. Unfortunately the appearance sometimes leaves much to be
desired.

- Export the Report to a Snapshot .snp file, and have the recipient
download the Snapshot Viewer from Microsoft's website.
 
Back
Top