Jan 31, 2001 #1 EscapeUK Programmer Joined Jul 7, 2000 Messages 438 Location GB I have a list view and I would like to print its contents and add a few titles at the top.
Feb 28, 2002 #2 papayac Technical User Joined Jan 21, 2002 Messages 17 Location US This is relatively simple For i = 0 to (list1.listcount-1) Printer.print list1.list(i) next i printer.enddoc This assumes that list1 is the name of your list Upvote 0 Downvote
This is relatively simple For i = 0 to (list1.listcount-1) Printer.print list1.list(i) next i printer.enddoc This assumes that list1 is the name of your list