forms and printing

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

Guest

Hello all,

I have a form that contains multiple labels simlar to:
"Hello my name is John"

The problem is that it displays on the screen fine, but when printed, the
spaces appear to be enlargerd so the text get slid further to the right. Is
their a way to prevent this? I tryed using chr(32) in vb, but that didn't
change anything.

Thanks
 
Hello all,

I have a form that contains multiple labels simlar to:
"Hello my name is John"

The problem is that it displays on the screen fine, but when printed, the
spaces appear to be enlargerd so the text get slid further to the right. Is
their a way to prevent this? I tryed using chr(32) in vb, but that didn't
change anything.

Thanks

Try copying and pasting the Form into the Reports window. Forms are
optimized for onscreen display, not printing; reports vice versa.

John W. Vinson[MVP]
 
Back
Top