Printing to UserForm
Printing to UserForm
(OP)
I'm trying to print to a user form. VB ref book indicates format as:
UserForm1.Print (data,strings etc to print)
is all that's needed. However, I get an error stating that property is not supported.
Any suggestions? thanks
UserForm1.Print (data,strings etc to print)
is all that's needed. However, I get an error stating that property is not supported.
Any suggestions? thanks
RE: Printing to UserForm
The following will print FROM a form
CODE
=====================================
Eng-tips forums: The best place on the web for engineering discussions.
RE: Printing to UserForm
RE: Printing to UserForm
That used to work for me, but now I usually just set a label or textbox and either change the labels caption or the textbox's contents.
HTH
Todd
RE: Printing to UserForm
srgoodall