Hi to all,
A form has a Default view: Continuous Forms
A command button is add on the form to print it (or print preview).
What VBA code should i use do it ?
Thanks in advance
Khalil
Hi to all,
A form has a Default view: Continuous Forms
A command button is add on the form to print it (or print preview).
What VBA code should i use do it ?
Thanks in advance
Khalil
printing a form is very rigid. You cannot format, you cannot print all the records, only 1 screenshot.
Its best to just make a report and format it to fit and get all the fields/records.
docmd.openreport "rMyReport",acViewPreview
Hi,
Thank you.