![]() |
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. |
|
|
Thread Tools | Search this Thread | Display Modes |
|
#1
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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
|
|||
|
|||
![]()
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 |
Display Modes | |
|
|
![]() |
||||
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 |