|
-
Dec 16th, 1999, 11:56 PM
#1
Thread Starter
Member
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!
-
Dec 17th, 1999, 12:01 PM
#2
Addicted Member
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/
-
Dec 17th, 1999, 12:04 PM
#3
Thread Starter
Member
Thanks smalig!
I imagine this goes in the code for the Print_click event?
-
Dec 17th, 1999, 12:07 PM
#4
Addicted Member
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|