


I have apply a solid colour as background for a subform.
Is it possible when prints to discard the background colour?
Views
Replies
Sign in to like this content
Total Likes
Hi,
You can use the following in the prePrint event of the subform:
this.border.fill.presence = "invisible";
and this in the postPrint:
this.border.fill.presence = "visible";
Good luck,
Niall
Views
Replies
Sign in to like this content
Total Likes
Hi,
You can use the following in the prePrint event of the subform:
this.border.fill.presence = "invisible";
and this in the postPrint:
this.border.fill.presence = "visible";
Good luck,
Niall
Views
Replies
Sign in to like this content
Total Likes
THANKS Niall!
Views
Replies
Sign in to like this content
Total Likes