Lodop設(shè)置指定打印機(jī)打印,避免默認(rèn)打印機(jī)被修改
當(dāng)前位置:點(diǎn)晴教程→知識(shí)管理交流
→『 技術(shù)文檔交流 』
createOneFormPage(); LODOP.SET_PRINT_MODE("TRYLINKPRINTER_NOALERT",true);//這個(gè)語(yǔ)句設(shè)置網(wǎng)絡(luò)共享打印機(jī)連接不通時(shí)是否提示一下 if (LODOP.SET_PRINTER_INDEX(0))//這里指定第0號(hào)打印機(jī)打印 LODOP.PRINT(); 1.C-Lopdop選擇打印機(jī)(C-Lodop特有的函數(shù)create_Printer_List) C-Lodop獲取打印機(jī)列表create_Printer_List,此方法Lodop不支持,是C-Lodop特有的函數(shù),客戶端本地打印單獨(dú)用c-lodop,或集中打印等,可以獲得本機(jī)或云主機(jī)的打印機(jī)列表。 2.Lodop選擇打印機(jī) <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>WEB打印控件LODOP</title> <script language="javascript" src="LodopFuncs.js"></script> <style> </style> </head> <input type="button" value="選擇打印機(jī)" onclick="creatPrintList()" > <select id="PrinterList" size="1" style="margin-top:10px;"></select> <input type="button" value="選擇打印機(jī)" onclick="creatPrintList2()" > <select id="PrinterList2" size="1" style="margin-top:10px;"></select> <script language="javascript" type="text/javascript"> var LODOP; //聲明為全局變量 function creatPrintList(){ LODOP=getLodop(); var iPrinterCount=LODOP.GET_PRINTER_COUNT(); for(var i=0;i<iPrinterCount;i++){ var option=document.createElement('option'); option.innerHTML=LODOP.GET_PRINTER_NAME(i); option.value=i; document.getElementById('PrinterList').appendChild(option); }; document.getElementById('PrinterList').style.display='block'; }; function creatPrintList2(){ if (document.getElementById('PrinterList2').innerHTML!="") return; //點(diǎn)第二次以上,在列表已經(jīng)填充不為空情況下,不再執(zhí)行后面的代碼,直接返回,避免重新裝載打印機(jī)。 LODOP=getLodop(); var iPrinterCount=LODOP.GET_PRINTER_COUNT(); for(var i=0;i<iPrinterCount;i++){ var option=document.createElement('option'); option.innerHTML=LODOP.GET_PRINTER_NAME(i); option.value=i; document.getElementById('PrinterList2').appendChild(option); }; document.getElementById('PrinterList2').style.display='block'; }; function prn1_preview() { LODOP=getLodop(); LODOP.PRINT_INIT(""); LODOP.SET_PRINTER_INDEX(document.getElementById("PrinterList").value); LODOP.SET_PRINT_PAGESIZE(1,300,500,""); LODOP.ADD_PRINT_TEXT(4,62,150,40,"文字"); LODOP.PREVIEW(); }; </script> </body> 該文章在 2023/9/25 19:04:49 編輯過(guò) |
關(guān)鍵字查詢
相關(guān)文章
正在查詢... |