Hi,
I'm in need to get the count and names of printers installed in VB6.0
Does anyone tell me how to get such collection information about printer.
Thanks
Printable View
Hi,
I'm in need to get the count and names of printers installed in VB6.0
Does anyone tell me how to get such collection information about printer.
Thanks
this will print all the printer names to the immediate windowvb Code:
Dim p As printer For Each p In printers Debug.Print p.devicename Next
Hi ,,,
Thanks for the reply ... its resolved now.
Regds,,