Charlotte has attended:
Access VBA course
Printing Forms
Is there a way of printing just the first record from a form instead of all?
RE: Printing Forms
Hi Charlotte
Thank you for your question
You can use the printout method of the DoCmd object. This method allows you to specify a start and finish page of the form or report in question.
For example
DoCmd.PrintOut acPages, 1,1
prints the first page of the active form
Hope this is useful
Regards
Stephen