how do i print the contents of a listbox on a print out(report). I am using the printer.print function???
Printable View
how do i print the contents of a listbox on a print out(report). I am using the printer.print function???
VB Code:
Dim x As Integer For x = 0 To (List1.ListCount - 1) Printer.Print List1.List(x) Next
Unless you are talking about something else.