View Single Post
  #8   Report Post  
Posted to microsoft.public.excel.programming
Charles Charles is offline
external usenet poster
 
Posts: 1
Default Printing User Forms

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

--
Message posted from http://www.ExcelForum.com