Printing custom form

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

I am using Outlook 2003 When I pring a custom form, all I get back are the
fields and their value in a list fomat. How do I print the form in "form"
format. Also in VBscripting is their a command to print the form like in
other versions of VB?
 
See http://www.outlookcode.com/d/customprint.htm for various solutions to
the limitation that Outlook forms don't support WYSIWYG printing. The Word
template technique is the most flexible and highly recommended.

As for the "command" to print, when in doubt, check the object browser:
Press ALt+F11 to open the VBA environment in Outlook, then press F2. Switch
from <All Libraries> to Outlook to browse all Outlook objects and their
properties, methods, and events. Select any object or member, then press F1
to see its Help topic.

Using the object browser, you should be able to quickly locate the PrintOut
method common to all Outlook items.
 
Back
Top