.snp files...specifications in VBA

  • Thread starter Andre Laplume via AccessMonster.com
  • Start date
A

Andre Laplume via AccessMonster.com

I want to output an MsAccess report as a .snp file as oppesed to a .rtf
file due to inheret issues with .rtf formatting. How do I specify this in
my DoCmd Output statement. Right now I use:

DoCmd.OutputTo acOutputReport, "MasterDeptList", "Rich Text Format", "X:\
....\filename.rtf"


What goes in place of "Rich Text Format" for a snapshot file?
 
V

Van T. Dinh

It may depend on the Access software version (?) but try:

acFormatSNP

for Snapshot. For Rich Text Format, the equivalent is:

acFormatRTF
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top