I'm trying to add a "Print" command button to a user form in VBA (Word) that
prints the entire form. When I click "Print" (object.printform) I only get
the visible part of the form, instead of the entire form. How can I get the
WHOLE form printed when I use .PrintForm?
fumei - 25 Mar 2008 20:01 GMT
Did you look in Help?
"PrintForm prints all visible objects and bitmaps of the UserForm object. "
The key word is visible.
If it is not visible...it is not printed.
>I'm trying to add a "Print" command button to a user form in VBA (Word) that
>prints the entire form. When I click "Print" (object.printform) I only get
>the visible part of the form, instead of the entire form. How can I get the
>WHOLE form printed when I use .PrintForm?
Doug Robbins - Word MVP - 25 Mar 2008 21:19 GMT
That is not really the way in which userforms are intended to be used. If
you want a screen shot of the entire form for the purpose of creating
instructions on how to use it, use Snagit available form www.techsmith.com,
It can capture a scrolling window

Signature
Hope this helps.
Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.
Doug Robbins - Word MVP
> I'm trying to add a "Print" command button to a user form in VBA (Word)
> that
[quoted text clipped - 3 lines]
> the
> WHOLE form printed when I use .PrintForm?