0

I am developing an application,When I press a print button a string of data is to be Printed by all the printers connected to the system. When I browse sample codes,a string of data is printed by a default printer. I needed to be printed by all the printers.

Can we print a String of data to all the printers connected to a system?

Andrew Thompson
  • 168,117
  • 40
  • 217
  • 433
VenuMadhava
  • 103
  • 1
  • 1
  • 6

1 Answers1

0

You would just need to get the list of installed printers and then send your string over. Check out How do I get a list of installed printers?

Community
  • 1
  • 1
  • I want to send it to all the printers but the code detects only the printers connected to it. – VenuMadhava Nov 19 '12 at 05:25
  • Then chances are the printers are not setup properly or registered properly with the service. Can you post the lookup code? – Thihara Nov 19 '12 at 06:40