G
Guest
Is it possible to print a SNP file from code? If so what is the code. I am
using Access 97.
using Access 97.
Alex said:Try to use ShellExecute with "print" operation argument
http://maug.pointltd.com/access/Queries/TipDetail.asp?TipID=5
Duncan said:Why make this so complicated with using an API? Simply use
DoCmd.OutputTo. It can output a variety of formats, including SNP (You
need at least Access 97 SR-1 to support SNP)
docmd.OutputTo acOutputReport, "rptMyReport", acFormatSNP,
"C:\something.snp"
SHIPP said:The parameter acformatsnp gives an error. Any other advice?