Custom Outlook forms

G

Guest

How do I add a command button to my custom form so that I can basically
perform a print screen of the customer form? Is it a command button that I
need?
 
H

Hollis Paul [MVP - Outlook]

How do I add a command button to my custom form so that I can basically
perform a print screen of the customer form? Is it a command button that I
need?
Yes, and then you need to create the event handler in the code page, which
will look something like

subroutine <controlname>_click()
...
<Your code goes here>
...
End sub

Go to outlookcode.com and find some printing examples. Nobody likes the
default Memo form, the wysiwyg printing option isn't all that better, but the
method that offers the greatest flexibility invokes a Word Template, transfers
the Outlook data to Word fields, and prints in the foreground. There is a
page on that site that explains all this.
 

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

Top