Form Printing

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

Guest

Hello,

I have a Form & a Button on it for the user to Print the Form, which works
fine.

Private Sub cbPrint_Click()
DoCmd.PrintOut
End Sub

However on this form is a MultiSelected ListBox & if multiple Items are
selected, when the form prints, it doesnt show the "highlighted" Rows, just
the ListBox & the text inside of it. Is their anyway to have this Form Print
with the ListBox Selected Items Selected ?

Any help would be greatly appreciated.

Thank you,
Jeff
 
I don't believe so.

You should bear in mind that forms are designed for displaying information
on screen, reports are for printing. There are lots of limitations/problems
in attempting to use forms for printing.
 
Forms are for viewing, editing, and adding data. Reports are for printing.

Create a report and have that button print the report, not the form.

Rick B
 
Back
Top