Save form as report and export as SNP file

S

SHIPP

I am working with Access 97. I want to, through VBA, save a form as a report
and then export as a SNP file. Any code you have would be appreciated.
 
A

Alex Dybenko

Hi,
you can just output form directly:
DoCmd.OutputTo acOutputForm, "MyForm", acFormatSNP, "C:\My Documents\", True
 
Top