Saving a .snp file

R

roccogrand

You need to Export your report to .snp format.

You can also create .snp files programmatically.

LDN
 
A

Arvin Meyer [MVP]

Just save it to the snapshot (.snp) format. It can be read by a Snapshot
reader. You cannot save a Snapshot file to any other format, but you can
save the report to several other formats, including Word, HTML, and PDF.
--
Arvin Meyer, MCP, MVP
Microsoft Access
Free Access downloads
http://www.datastrat.com
http://www.mvps.org/access
 
G

Guest

in vba,
docmd.OutputTo acOutputReport, "myreport",acformatsnap,"myfile"
in a macro, use the OutpuTo action

from the menu, use File, SaveAs/Export

(david)
 
Top