Print problems

Langels00

Registered User.
Local time
Yesterday, 19:20
Joined
Jan 12, 2014
Messages
11
I have a project which produces a report of names, addresses, etc. I added a print button to the form to send the report to the printer. The code is as follows:

Private Sub Command32_Click()

Docmd.SetWarnings False
'Docmd.OpenReport "rptAddresses", acViewNormal
Docmd.RunCommand acCmdPrint
Docmd.SetWarnings True

End Sub

Both alternatives in the code produce the same result described following.

However, the printed report includes only the first 2 colums of about 10 of the 90 plus records. If I send to to a PDF, it works fine. If I do a print view on the screen ir looks fine.
I suspect the solution to the problem is simple but it escapes me. Any help will be appreciated.
 
Yeah...that's weird. Have you tried adjusting page margins a bit? Or removing some controls to see if that makes any difference to the print behaviour? It might help narrow things down.

Have you tried printing to a different printer?

Or can you upload a copy of the database, with fake data if necessary? Maybe someone here will work out what's going on,
 

Users who are viewing this thread

Back
Top Bottom