Printing User Forms

  • Thread starter Thread starter mickiedevries
  • Start date Start date
M

mickiedevries

How do I print a user form? I know how to print a worksheet but not
user form.

Thanks

Micki
 
mickiedevries


If you add a command button on your userform you can use

Private Sub CommandButton4_Click()
UserForm1.PrintForm
End Sub

Or:

Sub printuserform()
UserForm1.PrintForm
End Sub


This should print the form.

Charle
 
mickiedevries


If you add a command button on your userform you can use

Private Sub CommandButton4_Click()
UserForm1.PrintForm
End Sub

Or:

Sub printuserform()
UserForm1.PrintForm
End Sub


This should print the form.

Charle
 
mickiedevries


If you add a command button on your userform you can use

Private Sub CommandButton4_Click()
UserForm1.PrintForm
End Sub

Or:

Sub printuserform()
UserForm1.PrintForm
End Sub


This should print the form.

Charle
 
mickiedevries


If you add a command button on your userform you can use

Private Sub CommandButton4_Click()
UserForm1.PrintForm
End Sub

Or:

Sub printuserform()
UserForm1.PrintForm
End Sub


This should print the form.

Charle
 
mickiedevries


If you add a command button on your userform you can use

Private Sub CommandButton4_Click()
UserForm1.PrintForm
End Sub

Or:

Sub printuserform()
UserForm1.PrintForm
End Sub


This should print the form.

Charle
 
mickiedevries


If you add a command button on your userform you can use

Private Sub CommandButton4_Click()
UserForm1.PrintForm
End Sub

Or:

Sub printuserform()
UserForm1.PrintForm
End Sub


This should print the form.

Charle
 
mickiedevries


If you add a command button on your userform you can use

Private Sub CommandButton4_Click()
UserForm1.PrintForm
End Sub

Or:

Sub printuserform()
UserForm1.PrintForm
End Sub


This should print the form.

Charle
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Back
Top