![]() |
How to set default email message form to my custom form?
Hi,
I have created a custom email message form, modified copy of the default message form. I would like this to be my default form when sending an email message. Is this possible? If not, what is the simplest way to use my custom form instead of the default? |
How to set default email message form to my custom form?
Using a published custom form as the default for messages is a bad idea. It
is likely to cause problems with attachments for non-Outlook recipients. If you insist, however, see http://www.outlookcode.com/article.aspx?ID=39. Better yet, give us some idea what functionality this custom form adds to your messgaes and someone may be able to suggest a way to get what you want without a custom form. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming: Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Kenneth" wrote: Hi, I have created a custom email message form, modified copy of the default message form. I would like this to be my default form when sending an email message. Is this possible? If not, what is the simplest way to use my custom form instead of the default? |
How to set default email message form to my custom form?
Well, I have a request to make the SUBJECT line mandatory so a person won't
forget to enter a subject line for the email. Any ideas? "Sue Mosher [MVP-Outlook]" wrote: Using a published custom form as the default for messages is a bad idea. It is likely to cause problems with attachments for non-Outlook recipients. If you insist, however, see http://www.outlookcode.com/article.aspx?ID=39. Better yet, give us some idea what functionality this custom form adds to your messgaes and someone may be able to suggest a way to get what you want without a custom form. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming: Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Kenneth" wrote: Hi, I have created a custom email message form, modified copy of the default message form. I would like this to be my default form when sending an email message. Is this possible? If not, what is the simplest way to use my custom form instead of the default? |
How to set default email message form to my custom form?
You can do that with Outlook VBA code. For example:
Private Sub Application_ItemSend _ (ByVal Item As Object, Cancel As Boolean) If Item.Subject = "" Then Cancel = True MsgBox "Please fill in the subject before sending.", _ vbExclamation, "Missing Subject" End If End Sub For a more elaborate version that also checks for expected attachments, see http://www.outlookcode.com/codedetail.aspx?id=553 And see http://outlookcode.com/article.aspx?id=49 if you're just getting started with Outlook VBA. -- Sue Mosher, Outlook MVP Author of Microsoft Outlook Programming: Jumpstart for Administrators, Power Users, and Developers http://www.outlookcode.com/jumpstart.aspx "Kenneth" wrote: Well, I have a request to make the SUBJECT line mandatory so a person won't forget to enter a subject line for the email. Any ideas? "Sue Mosher [MVP-Outlook]" wrote: Using a published custom form as the default for messages is a bad idea. It is likely to cause problems with attachments for non-Outlook recipients. If you insist, however, see http://www.outlookcode.com/article.aspx?ID=39. Better yet, give us some idea what functionality this custom form adds to your messgaes and someone may be able to suggest a way to get what you want without a custom form. "Kenneth" wrote: Hi, I have created a custom email message form, modified copy of the default message form. I would like this to be my default form when sending an email message. Is this possible? If not, what is the simplest way to use my custom form instead of the default? |
All times are GMT +1. The time now is 04:42 PM. |
Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2006 OutlookBanter.com