belo Posted February 25, 2013 Posted February 25, 2013 What is the correct code for displaying the print dialog with TUniURLFrame? I made my code based on the example of the post: http://forums.unigui.com/index.php?/topic/1490-print-the-content-of-urlframe/?hl=print When printing is giving error as attached image... Code.. In the Form.Script: function zPrint(oTgt){ oTgt.focus(); oTgt.print(); } function printIframe(id) { var iframe = id; var ifWin = iframe.contentWindow || iframe; // the change zPrint(ifWin); return false; } In the button.ExtEvents.OnClick: function OnClick(sender, e) { var frm = FrmDAM.UniURLFrame1.iframe; if (frm) { printIframe(frm); } } As attached image, you can see who is the image of UniURLFrame mixing with the bottom of the main screen. Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.