PC Review


Reply
Thread Tools Rate Thread

Blank Subject Box Warning?

 
 
Charlie Allnut
Guest
Posts: n/a
 
      21st May 2007
Is there a setting to warn me that the "Subject" box is blank in an outgoing
Outlook 2003 email?

Charlie


 
Reply With Quote
 
 
 
 
Sue Mosher [MVP-Outlook]
Guest
Posts: n/a
 
      21st May 2007
No, but you can write VBA code for the Application_ItemSend event handler, e.g.:

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 Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx

"Charlie Allnut" <null@null> wrote in message news:(E-Mail Removed)...
> Is there a setting to warn me that the "Subject" box is blank in an outgoing
> Outlook 2003 email?
>
> Charlie
>
>

 
Reply With Quote
 
F.H. Muffman
Guest
Posts: n/a
 
      21st May 2007
"Charlie Allnut" <null@null> wrote in message
news:(E-Mail Removed)...
> Is there a setting to warn me that the "Subject" box is blank in an
> outgoing Outlook 2003 email?


Nope. Nothing in the program. VBA Code could be written to do it, however,
if you're so inclined to do some programming.

--
f.h.


 
Reply With Quote
 
Charlie Allnut
Guest
Posts: n/a
 
      23rd May 2007

"Sue Mosher [MVP-Outlook]" <(E-Mail Removed)> wrote in message
news:%23fPIH9$(E-Mail Removed)...

"Charlie Allnut" <null@null> wrote in message
news:(E-Mail Removed)...
> Is there a setting to warn me that the "Subject" box is blank in an
> outgoing
> Outlook 2003 email?
>
> Charlie
>
>


No, but you can write VBA code for the Application_ItemSend event handler,
e.g.:

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 Configuring Microsoft Outlook 2003
http://www.turtleflock.com/olconfig/index.htm
and Microsoft Outlook Programming - Jumpstart for
Administrators, Power Users, and Developers
http://www.outlookcode.com/jumpstart.aspx


Regrettably I'm not a programmer-- so I guess I'll have to do without and
occasionally look like a boob to my clients when I fire one off without a
Subject...

Charlie


 
Reply With Quote
 
 
 
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
How do I setup a warning if I leave the subject line blank? =?Utf-8?B?YWtwb3BwZQ==?= Microsoft Outlook Discussion 1 27th Jan 2006 03:55 PM
No warning when subject is blank (2003) Judy Gleeson Microsoft Outlook Discussion 1 27th Jul 2004 02:36 AM
Blank Subject Warning? Ben Rodden Microsoft Outlook VBA Programming 5 10th Feb 2004 08:48 PM
Blank Subject Warning... brodden Microsoft Outlook 0 9th Feb 2004 02:57 PM
Warning for Blank Subject on Send Monte Seifers Microsoft Outlook 1 8th Dec 2003 04:15 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 11:51 AM.