Eng-Tips is the largest engineering community on the Internet

Intelligent Work Forums for Engineering Professionals

Printing to UserForm

Status
Not open for further replies.

srgoodall

Electrical
Feb 8, 2008
4
0
0
US
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
 
Replies continue below

Recommended for you

Do you want to print TO a form or FROM a form?

The following will print FROM a form
Code:
UserForm1.PrintForm

=====================================
Eng-tips forums: The best place on the web for engineering discussions.
 
Hi srgoodall,

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
 
HTH, thanks. I'd like to print directly without using labels/textboxes because the number of entries is unknown and tabs, carriage rtns can be more easily controlled. thanks again.
srgoodall
 
Status
Not open for further replies.
Back
Top