Save form as report and export as SNP file

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

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.
 
Hi,
you can just output form directly:
DoCmd.OutputTo acOutputForm, "MyForm", acFormatSNP, "C:\My Documents\", True
 
Back
Top