Page 1 of 1

Printing a TIWCGJQMemoEx without header and footer

PostPosted: 06 Oct 2016 15:47
by ScottWGast
Is there any way to suppress printing the Page number heading and the URL footer?

All I want is the memo component to print.

TIA!
Scott

Re: Printing a TIWCGJQMemoEx without header and footer

PostPosted: 07 Oct 2016 18:06
by Alexander Bulei
Hi ScottWGast,

Unfortunately, there is no way..only in print dialog.

Best Regards.

Re: Printing a TIWCGJQMemoEx without header and footer

PostPosted: 07 Oct 2016 18:51
by ScottWGast
Dangit!
Thanks for the help.
Scott

Re: Printing a TIWCGJQMemoEx without header and footer

PostPosted: 25 Oct 2016 21:24
by ScottWGast
Currently, JQPrint seems to print only the visible part of the component being printed.

In my case, it's a TIWGrid sitting on a TIWCGJQRegion, which sits on top of a TIWCGJQFrame, which sits on top of a TIWCGJQDialog.

Scroll bars on the region allow me to scroll up and down the grid, but when I print, regardless of where my cursor is positioned within the grid, only the top portion of the grid down to what would be the last visible row on the screen if my cursor was on the first row of the grid, prints.

TIA
Scott Gast

Re: Printing a TIWCGJQMemoEx without header and footer

PostPosted: 27 Oct 2016 09:50
by Alexander Bulei
Hi ScottWGast,

If you doesn't have another scrollable areas, so you can call the print method with second parameter True.

Code: Select all
IWCGJQPrint1.Print(IWCGJQRegion2,True);


Best Regards.

Re: Printing a TIWCGJQMemoEx without header and footer

PostPosted: 27 Oct 2016 13:32
by ScottWGast
Good morning Alexander!

Thank you for the printing tip, it was great to get into my office this morning and remove an "undocumented feature" from my code!

Have a great day.

Scott