Jan 31, 2001 #1 EscapeUK Programmer Jul 7, 2000 438 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 Jan 21, 2002 17 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