save a form as snapshot

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

Guest

Dear all,
how can I save/export a form in a snapshot format.
I'm using [DoCmd.PrintOut] to print the form.

Thanks in advance
 
Thanks for your reply but:

1- I want to export a Form not a report.
2- I cannot specify the Snp format while exporting a form.

Any other idea?
jouj.

Graham R Seach said:
Use the OutputTo method:

DoCmd.OutputTo acOutputReport, "Report1" ,acFormatSNP, "c:\test.snp", False

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Microsoft Access 2003 VBA Programmer's Reference
http://www.wiley.com/WileyCDA/WileyTitle/productCd-0764559036.html


jouj said:
Dear all,
how can I save/export a form in a snapshot format.
I'm using [DoCmd.PrintOut] to print the form.

Thanks in advance
 
jouj said:
Thanks for your reply but:

1- I want to export a Form not a report.
2- I cannot specify the Snp format while exporting a form.

Any other idea?

So create a report that looks like the form. All you have to do is right-click
the form in the db window and choose "Save as Report".
 
Sorry. Of course you made it clear that you were talking about a form. I
just had snapshot=report stuck in my mind.

No, there's no way to output a form as snp. I think Rick's suggestion is
going to be the best you'll hear.

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia
---------------------------

jouj said:
Thanks for your reply but:

1- I want to export a Form not a report.
2- I cannot specify the Snp format while exporting a form.

Any other idea?
jouj.

Graham R Seach said:
Use the OutputTo method:

DoCmd.OutputTo acOutputReport, "Report1" ,acFormatSNP, "c:\test.snp",
False

Regards,
Graham R Seach
Microsoft Access MVP
Sydney, Australia

Microsoft Access 2003 VBA Programmer's Reference
http://www.wiley.com/WileyCDA/WileyTitle/productCd-0764559036.html


jouj said:
Dear all,
how can I save/export a form in a snapshot format.
I'm using [DoCmd.PrintOut] to print the form.

Thanks in advance
 
Back
Top