Jul 29, 2002 #1 kmcclung Programmer Nov 20, 2001 120 US Is there a way to print the contents of a list view?
Jul 29, 2002 1 #2 johnwm Programmer Feb 7, 2001 8,469 GB Try this Code: Dim c As ListItem For Each c In ListView1.ListItems Printer.Print c.Text Next Printer.EndDoc Let me know if this helps Check out FAQ222-2244 Upvote 0 Downvote
Try this Code: Dim c As ListItem For Each c In ListView1.ListItems Printer.Print c.Text Next Printer.EndDoc Let me know if this helps Check out FAQ222-2244
Jul 30, 2002 Thread starter #3 kmcclung Programmer Nov 20, 2001 120 US It is exactly what I needed!! Thanks! Upvote 0 Downvote