How can I set the font for a rtf document created from Access?

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

Guest

I am creating a rtf document from an Access database. I need to know how to
set the default font for the entire document. I know how to set the font for
each field on the document. How can I set the font for the "white spaces" on
the document?
 
"Creating an rtf document" _how_ from Access? You may need to become very
familiar with the RTF specifications.

The only way I have created RTF documents from Access is to save the report
to Microsoft Word (and I didn't find that very satisfactory -- ended up
using HTML because it "rendered" somewhat truer to the original).

Larry Linson
Microsoft Access MVP
 
I use following statement to create the rtf document:

DoCmd.OutputTo acOutputReport, "INVESTIGATION REPORT", acFormatRTF, _
"\\sydata2\groups$\ml\" & Me!cboInvest & ".rtf", True
----------------------------------------------------------------------------------------
 
Back
Top