A Microsoft Outlook email forum. Outlook Banter

If this is your first visit, be sure to check out the FAQ by clicking the link above. You may have to register before you can post: click the register link above to proceed. To start viewing messages, select the forum that you want to visit from the selection below.

Go Back   Home » Outlook Banter forum » Microsoft Outlook Email Newsgroups » Outlook - Installation
Site Map Home Register Authors List Search Today's Posts Mark Forums Read Web Partners

How can I make Subject: box entry required?



 
 
Thread Tools Search this Thread Display Modes
  #1  
Old April 10th 06, 08:38 PM posted to microsoft.public.outlook.installation
David Grana
external usenet poster
 
Posts: 10
Default How can I make Subject: box entry required?

A user wants to make the Subject: box entry in a new message a required
field. He wants Outlook to warn him so he cannot send a new message without
a Subject: box entry.
--
David Grana

  #2  
Old April 10th 06, 09:27 PM posted to microsoft.public.outlook.installation
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default How can I make Subject: box entry required?

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)
Dim strMsg As String
Dim res As Long
If Item.Subject = "" Then
Cancel = True
strMsg = "Please fill in the subject before sending."
MsgBox strMsg, _
vbExclamation + vbSystemModal, "Missing Subject"
Item.Display
End If
End Sub

For a more elaborate version that also checks for expected attachments, see http://www.outlookcode.com/codedetail.aspx?id=553

For VBA basics, see http://www.outlookcode.com/d/vbabasics.htm

--
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

"David Grana" wrote in message ...
A user wants to make the Subject: box entry in a new message a required
field. He wants Outlook to warn him so he cannot send a new message without
a Subject: box entry.
--
David Grana

  #3  
Old April 24th 06, 10:00 PM posted to microsoft.public.outlook.installation
Gryphonron
external usenet poster
 
Posts: 2
Default How can I make Subject: box entry required?

How do you get the "Introduction" box under the subject box?

"Sue Mosher [MVP-Outlook]" wrote:

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)
Dim strMsg As String
Dim res As Long
If Item.Subject = "" Then
Cancel = True
strMsg = "Please fill in the subject before sending."
MsgBox strMsg, _
vbExclamation + vbSystemModal, "Missing Subject"
Item.Display
End If
End Sub

For a more elaborate version that also checks for expected attachments, see http://www.outlookcode.com/codedetail.aspx?id=553

For VBA basics, see http://www.outlookcode.com/d/vbabasics.htm

--
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

"David Grana" wrote in message ...
A user wants to make the Subject: box entry in a new message a required
field. He wants Outlook to warn him so he cannot send a new message without
a Subject: box entry.
--
David Grana


  #4  
Old April 25th 06, 07:42 AM posted to microsoft.public.outlook.installation
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default How can I make Subject: box entry required?

In what context? Are you referring to the Introduction box that appears when you use the File | Send command in Word or Excel? How does that relate to the topic under discussion?

--
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

"Gryphonron" wrote in message ...
How do you get the "Introduction" box under the subject box?

"Sue Mosher [MVP-Outlook]" wrote:

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)
Dim strMsg As String
Dim res As Long
If Item.Subject = "" Then
Cancel = True
strMsg = "Please fill in the subject before sending."
MsgBox strMsg, _
vbExclamation + vbSystemModal, "Missing Subject"
Item.Display
End If
End Sub

For a more elaborate version that also checks for expected attachments, see http://www.outlookcode.com/codedetail.aspx?id=553

For VBA basics, see http://www.outlookcode.com/d/vbabasics.htm


"David Grana" wrote in message ...
A user wants to make the Subject: box entry in a new message a required
field. He wants Outlook to warn him so he cannot send a new message without
a Subject: box entry.
--
David Grana


  #5  
Old April 25th 06, 03:38 PM posted to microsoft.public.outlook.installation
Gryphonron
external usenet poster
 
Posts: 2
Default How can I make Subject: box entry required?

Sue, Thanks for responding. You just seemed to know a lot about outlook. I
want to use the introduction box when I send out my newsletters but to send
them to individual recipients the only way I can figure out to do it where
they get WYSIWYG is to create the document in a table (otherwise it gets
totally jumbled and publisher doesn't use the same merge system), then filter
my list in Outlook and use the "merge to" feature. Using this route, I can't
get the introduction box.
I also get a locked files warning that requires me to hit enter for every
recipient (pretty tedious to 500+). Thanks for any help you can give me.
Rp

"Sue Mosher [MVP-Outlook]" wrote:

In what context? Are you referring to the Introduction box that appears when you use the File | Send command in Word or Excel? How does that relate to the topic under discussion?

--
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

"Gryphonron" wrote in message ...
How do you get the "Introduction" box under the subject box?

"Sue Mosher [MVP-Outlook]" wrote:

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)
Dim strMsg As String
Dim res As Long
If Item.Subject = "" Then
Cancel = True
strMsg = "Please fill in the subject before sending."
MsgBox strMsg, _
vbExclamation + vbSystemModal, "Missing Subject"
Item.Display
End If
End Sub

For a more elaborate version that also checks for expected attachments, see http://www.outlookcode.com/codedetail.aspx?id=553

For VBA basics, see http://www.outlookcode.com/d/vbabasics.htm


"David Grana" wrote in message ...
A user wants to make the Subject: box entry in a new message a required
field. He wants Outlook to warn him so he cannot send a new message without
a Subject: box entry.
--
David Grana



  #6  
Old April 26th 06, 11:15 PM posted to microsoft.public.outlook.installation
Sue Mosher [MVP-Outlook]
external usenet poster
 
Posts: 11,651
Default How can I make Subject: box entry required?

Why not just build the introduction into the newsletter document, formatted however you want, and then perform a regular Word mail merge to email? That's likely to produce better results than trying to force another feature into a use it wasn't designed for.

--
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

"Gryphonron" wrote in message ...
Sue, Thanks for responding. You just seemed to know a lot about outlook. I
want to use the introduction box when I send out my newsletters but to send
them to individual recipients the only way I can figure out to do it where
they get WYSIWYG is to create the document in a table (otherwise it gets
totally jumbled and publisher doesn't use the same merge system), then filter
my list in Outlook and use the "merge to" feature. Using this route, I can't
get the introduction box.
I also get a locked files warning that requires me to hit enter for every
recipient (pretty tedious to 500+). Thanks for any help you can give me.
Rp

"Sue Mosher [MVP-Outlook]" wrote:

In what context? Are you referring to the Introduction box that appears when you use the File | Send command in Word or Excel? How does that relate to the topic under discussion?

--
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

"Gryphonron" wrote in message ...
How do you get the "Introduction" box under the subject box?

"Sue Mosher [MVP-Outlook]" wrote:

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)
Dim strMsg As String
Dim res As Long
If Item.Subject = "" Then
Cancel = True
strMsg = "Please fill in the subject before sending."
MsgBox strMsg, _
vbExclamation + vbSystemModal, "Missing Subject"
Item.Display
End If
End Sub

For a more elaborate version that also checks for expected attachments, see http://www.outlookcode.com/codedetail.aspx?id=553

For VBA basics, see http://www.outlookcode.com/d/vbabasics.htm


"David Grana" wrote in message ...
A user wants to make the Subject: box entry in a new message a required
field. He wants Outlook to warn him so he cannot send a new message without
a Subject: box entry.
--
David Grana



 




Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Control-click Required Jeni Q Outlook - General Queries 2 March 29th 06 02:48 PM
Entry box and button for searching? Michael Add-ins for Outlook 1 January 24th 06 12:48 PM
Can you make fields in Outlook forms "required"? Miss Julie Outlook - Calandaring 1 January 19th 06 05:30 PM
How to display PO Box field in Business Address Box from contact Sue Mosher [MVP-Outlook] Outlook - Using Contacts 0 January 18th 06 05:01 PM
How do I make attachments show under the subject, as opposed to bo Luke Pickard Outlook - Installation 2 January 11th 06 06:29 PM


All times are GMT +1. The time now is 07:03 AM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.Search Engine Friendly URLs by vBSEO 2.4.0
Copyright ©2004-2025 Outlook Banter.
The comments are property of their posters.