Hi Paul,That is a great tip, I can throw away some rather dodgy code
that tried to do just that. I hope it gets marked as correct so more
people might read it.Hi K,For some text fields I would go with reducing
the font but for some (with a lot of text) I would have a scrolling
textbox on the screen (so it doesn't muck up my layout) and an expanding
textbox for when printing. So in the prePrint event have; this.minH=
this.h;this.h= 0;and in the postPrint event have;this.h=
this.minH;this.minH= 0;...