Jump to content

Recommended Posts

Posted
What is the correct code for displaying the print dialog with TUniURLFrame?
 
I made my code based on the example of the post:
 
 
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.

post-875-0-53583800-1361754417_thumb.jpg

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...