Jump to content

Recommended Posts

Posted

I produce a html source that i want to send to printer without the page was visible for user.

I try this :

MemoExport.visible := false;
MemoExport.text := My_Page_Html_Generated;
UniSession.AddJs(MemoExport.jsname+'.iframeEl.dom.contentWindow.print();');

With this method, the printing was launching before html was loaded in memo.

 

How can i do this ?

Posted

Hi,

 

Try to use UniHTMLMemo onChange event, for example:

procedure TMainForm.MemoExportChange(Sender: TObject);
begin
  UniSession.AddJs(MemoExport.jsname+'.iframeEl.dom.contentWindow.print();');
end;

Best regards.

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...