Access 2000

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

Guest

When going to print preview from Form View the data on the form is not the
same as is displayed on print preview. What gives when previewing the form
for printing, I would have thought the print preview would display exactly
what was on the Report form.
 
I'm not sure to which case you are refering to
but, if you mean that the report doesn't print the current changes that you
just made on the form, then you need to save the record before printing

If Me.Dirty Then 'Save any edits.
Me.Dirty = False
End If
Docmd.OpenReport "ReportName"
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top