| How Do I Deploy Convert2XPS? |
|
Convert2XPS consists of just 3 files:
Is Any Further Setup Required?Just 2 lines of code, to install the Convert2XPS printer. You can supply your own name for the printer if you wish to brand it, else it will default to "Convert2XPS": Printer p = new Printer("My Printer"); p.AddPrinter();
Depending on your application, you may wish to do this at install time, or on the first time your application is run. How Do I Remove The Printer?It's just as easy. Remember to supply the same name for the printer when adding and deleting it: Printer p = new Printer("My Printer"); p.DeletePrinter(); Are There Any Prerequisites?Convert2XPS requires .Net 3.0 or greater to be installed. Also, as the printer wraps elements of the Microsoft XPS Document Writer, that too must be installed. |

Deployment