Hello,
In VBA I'm trying to export 2 reports of my dbase as snapshots to a folder where users have access to.
The code I use:
DoCmd.OutputTo acOutputReport, "whatever", acFormatSNP, "T:\whatever.snp"
DoCmd.OutputTo acOutputReport, "whatever_1", acFormatSNP, "T:\whatever_1.snp"
The...