Download Now
Home Deployment
 
How Do I Deploy Convert2XPS?

Convert2XPS consists of just 3 files:

  1. Convert2XPS.dll - this is the .Net assembly. Deploy this in the same folder as your other application files.
  2. dokixmon.dll - this is the print monitor. You will receive 3 versions of this, built for Windows XP x86, Windows Vista x86 and Windows Vista x64. Deploy the appropriate file to the System32 directory.
  3. license.license - this is your license file. Deploy this to the same directory as Convert2XPS.dll.

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();

Printers

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.

Tell me about pricing...