Jerry posted this 15 January 2015
I just had a quick test with our 'PrintSetup()'
function initView() {
if (factory.printing.printSetup() == true) {
alert(factory.printing.CurrentPrinter);
factory.printing.Print(false);
factory.printing.WaitForSpoolingComplete();
// do something else such as navigate the content frame
}
else {
// They failed to choose a printer, let's get out of here
alert("Print operation has been aborted...");
}
}
That returns the selected printer each time, so maybe that's your solution.
Jerry