10.09.2018, 12:15 | #1 |
Участник
|
Печать картинок jpeg, png
Добрый день, отправляю на печать pdf файлы, с этим нет пробелм, с помощью следующего кода
X++: new InteropPermission(InteropKind::ClrInterop).assert(); process = new System.Diagnostics.Process(); processInfo = process.get_StartInfo(); processInfo.set_FileName(@"acrord32.exe"); processInfo.set_Arguments(strFmt('/s /h /t "%1" "%2" "%3" "%4"', DocuRef::find(inventCertificateTable.dataAreaId, inventCertificateTable.RecId).CompleteFilename(), printJobSettings.printerPrinterName(), printJobSettings.printerDriverName(), printJobSettings.printerPortName())); processInfo.set_UseShellExecute(true); processInfo.set_CreateNoWindow(true); process.Start(); CodeAccessPermission::revertAssert(); Последний раз редактировалось oleyhov; 10.09.2018 в 13:41. |
|
|
|