Expand my Community achievements bar.

Learn about Edge Delivery Services in upcoming GEM session

showing and not showing page while printing

Avatar

Level 6
Hello,



I have a (dynamic) form with two pages. When printing I would like that one page would not print, but after print I want to see both pages on the screen. This page should be the first page of the form, but if it is not possible, it can be the second page.



What the best method to accomplish this?



thank you
2 Replies

Avatar

Former Community Member
One way you could do this would be to hide the page that you do not want to print by using the following code in the prePrint event:

form1.Page1.presence = "hidden";



Then in the postPrint event, make the page visible again:

form1.Page1.presence = "visible";



Hope that helps.

Avatar

Level 6
Hi,



That will hide all the objects in the page, but the page will print blank. I don´t want to print the page.



I can make a removeInstance (to the second page), but then, after print I would like to have my page back (with the data on the objects). However, I can´t make a addinstance...



Any ideas?



Thank you