I have a list (list1) and want to print it on the printer. But with the method I know zhe printer onli prints on line or the first selected item.
This doesn't work:
Printer.print list1
Printer.EndDoc
How must I write the code (in VB3)?
Printable View
I have a list (list1) and want to print it on the printer. But with the method I know zhe printer onli prints on line or the first selected item.
This doesn't work:
Printer.print list1
Printer.EndDoc
How must I write the code (in VB3)?
Try this small code
(If you use debug.print instead it prints to the immideate window)Code:dim intX as integer
for intx=0 to list1.listcount
printer.print list1.list(intX)
next intx
------------------
On Error Goto Bed :0)
[email protected]