1

I am making an application which will act as a virtual printer saving the printed document to a file. How can I make my app appear as a printer in the print dialog?

Thanks, Jason

Jason
  • 4,034
  • 4
  • 40
  • 62
  • possible duplicate of [Writing a Windows Printer Driver](http://stackoverflow.com/questions/649490/writing-a-windows-printer-driver) – Oded Jan 08 '11 at 16:12

1 Answers1

4

You will need to write a printer driver for this, you will not be able to do this in C#. You will at the very least need to use C/C++ and the WDK (Windows Driver Kit), there are commercial libraries/tools that make writting drivers easier.

If you are interested, a good online resource is http://www.osronline.com/

Chris Taylor
  • 52,623
  • 10
  • 78
  • 89