What is the best way to print the information located in a File List Box?
I know how to print regular documents, but I'm unclear how to print the info in the list box.
Thanks!
Printable View
What is the best way to print the information located in a File List Box?
I know how to print regular documents, but I'm unclear how to print the info in the list box.
Thanks!
Try it:
Dim lx&, cx&
Dim FileName$
cx = File1.ListCount - 1
For lx = 0 To cx
FileName = File1.List(lx)
Printer.Print FileName
Next
------------------
smalig
[email protected]
http://vbcode.webhostme.com/
Thanks smalig!
I imagine this goes in the code for the Print_click event?
Sure!
------------------
smalig
[email protected]
http://vbcode.webhostme.com/