Home | Contact Us | FAQ | Search & Site Map | Link to Us
Sign In | Join | Other 45 Sites in Network
Home
DiscussionsAccessExcelInfoPathOutlookPowerPointPublisherWord
DirectoryUser Groups
Related Topics
Outlook ExpressInternet ExplorerWindowsMS Server ProductsMore Topics ...

MS Office Forum / Outlook / Installation and Configuration / October 2004

Tip: Looking for answers? Try searching our database.

automatic reminder to insert an email subject?

Thread view: 
Enable EMail Alerts  Start New Thread
Thread rating: 
SC Frank - 17 Oct 2004 16:51 GMT
How do I set an automatic reminder to insert an email subject?  I have 3
computers.  On my laptop I set Outlook to remind me to insert an email
subject before the email sends.  I need to set my desktops (all have Office
XP) but can't recall how I did it nor can I find any info in Help.

Any ideas?
Sue Mosher [MVP-Outlook] - 18 Oct 2004 18:56 GMT
There is no such feature, but you can build it in with a little VBA code:

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

Signature

Sue Mosher, Outlook MVP
Author of
    Microsoft Outlook Programming - Jumpstart for
    Administrators, Power Users, and Developers
    http://www.outlookcode.com/jumpstart.aspx

> How do I set an automatic reminder to insert an email subject?  I have 3
> computers.  On my laptop I set Outlook to remind me to insert an email
[quoted text clipped - 3 lines]
>
> Any ideas?
 
Sign In
Join
My Latest Posts
My Monitored Threads
My Blog
My Photo Gallery
My Profile
My Homepage

Start New Thread
Enable EMail Alerts
Rate this Thread



©2008 Advenet LLC   Privacy Policy - Terms of Use
This website includes both content owned or controlled by Advenet as well as content owned or controlled by third parties.