Forms aren't designed to be printed. Design a report that mimics the shape of your form, and pass the specific ID of the record you want to the report from a button on your form.
on a button on your form will open the report in preview mode. Note that this presumes your id field is numeric. If it's text, add single quotes like so:
Code:
"[ID_Field] = '" & Me.[ID_Field_Control] & "'"
HTH,
David R
[This message has been edited by David R (edited 04-02-2002).]
Thanks for the tips. I generated reports similar to my forms and made buttons on the forms to print them out. Actually, they look better than the printed forms anyway. Thanks again.