Form Printing

  • Thread starter Thread starter Bruce
  • Start date Start date
B

Bruce

I have a Form in justified mode which is in effect two forms the top form I
want to print but the second i.e. the bottom part of the form needs to be
viewed but not printed. How do I achieve this, is it to do with page break?

Bruce
 
I would bite the bullet and actually make a report.

You can print forms, but then you start to deal with stuff for editing and
display, but stuff that should not be printed.

I would *really* try to make a report. they are much cleaner...


To print the current record you are viewing, you can place the following
code behind the button:

me.Refresh
docmd.OpenReport "theReportName",,,"id = " & me.id

Try the above...it is much cleaner, and you even add things like date/time
of print, a nice heading etc. The results are much more professional.
 
Back
Top