User-659726541 posted
it is possible, but you have to use the serverside printing.
Inside the crystal,
this.PrintOptions.PrinterName = printerName;
this.PrintToPrinter(copies, collated, startPage, endPage);
'printerName' is the printer name installed on the server. you can specify that in the appsettings.local file and access the value here.
eg:
string printerName = "MY_PRINTER_NAME";
this.PrintOptions.PrinterName = printerName;
this.PrintToPrinter(1, FALSE, 0, 0);
hope that helps