Go to DotNetFunda.com
 Online : 924 |  Welcome, Guest!   Login
 
Home > Articles > Others > Validate Blank Subject Warning for Outlook 2007

  • Download the OOPS, ASP.NET and ADO.NET Training Videos for FREE, click here.

Submit Article | Articles Home | Search Articles |

Validate Blank Subject Warning for Outlook 2007

 Posted on: 9/16/2009 5:26:19 AM by Virendradugar | Views: 988 | Category: Others | Level: Beginner | Print Article
By default Outlook does not validate for empty subject line. This article provides a mechanism to achieve the same.

.NET Training Videos!
Buy online comprehensive training video pack just for $35.00 only, see what's inside it.

Introduction

Nowdays, in the professional world, Outlook is used as the email client. Subject line is a very important part of any email. A good subject line can drive the attention of the email reader. How many times has it happened with you that you have sent an email through Outlook without a subject line. After clicking the send button, you realize that you have made a mistake. Are you forgetting to include the subject line? Outlook does not validate for empty subject line.


How to do it?

Follow these steps to validate the empty subject line for Outlook 2007.

1. Go to Tools -> Macro -> Visual Basic Editor. Or directly press Alt + F11.



2. Visual Basic editor window gets opened.

3. On the Left Pane, You can see Microsoft Outlook Objects or Project1, expand this. Now you can see the ThisOutLookSession.

4. Double click on ThisOutLookSession. It will open up a code pane.

5. Copy and paste the following code in the code pane:

Private Sub Application_ItemSend(ByVal Item As Object, Cancel As Boolean)
   Dim strSubject As String
   strSubject = Item.Subject
   If Len(Trim(strSubject)) = 0 Then
       Prompt$ = "Subject is Empty. Are you sure you want to send the Mail?"
      If MsgBox(Prompt$, vbYesNo + vbQuestion + _
 vbMsgBoxSetForeground, "Check for Subject") = vbNo Then
        Cancel = True
      End If
  End If
End Sub

 

Now, just save the project.

One more setting you need to do and that is to enable macro.
Go to Tools->Macro->Security. A dialog window gets opened. Select Warning for all macro option.

That's it.. You are good to go now.

Close your Outlook and open it again. You will be asked regarding the security concern. See the image below.

Click on Enable Macros.

Now try to send an mail with empty subject line. It validates..

Enjoy....


If you like this article, subscribe to our RSS Feed. You can also subscribe via email to our Interview Questions, Codes and Forums section.

Interesting?   Share and Bookmark this kick it on DotNetKicks.com


Experience:3 year(s)
Home page:http://virendrablogs.blogspot.com
Member since:Tuesday, August 11, 2009
Level:Silver
Status: [Member]
Biography:Virendra Dugar is experienced software developer with 3 years of hands-on experience working with Microsoft .NET technology (ASP.NET, C#, VB.NET,SQL Server). He is always keen to learn new technology. He holds a Master's Degree in Computer Application & Information technology from Gujarat University in india.In free time, he loves to listen music, read books, play games and do blogging etc.

Visit his blog :
http://virendrablogs.blogspot.com
http://virendradugar.wordpress.com
 Latest post(s) from Virendradugar

   ◘ Set Page Position after asyncPostback in AJAX posted on 1/4/2010 1:46:02 AM
   ◘ Common misconception regarding ViewState and TextBox posted on 1/1/2010 8:00:02 AM
   ◘ Starting with JQuery posted on 11/22/2009 9:09:22 AM
   ◘ Copy DLL from GAC posted on 11/14/2009 4:05:08 AM
   ◘ Handle back button of the browser posted on 11/4/2009 5:04:33 AM


Submit Article

About Us | The Team | Advertise | Contact Us | Feedback | Privacy Policy | Terms of Use | Link Exchange | Members | Go Top
General Notice: If you found copied contents on this page, please let us know the original source along with your correct email id (to communicate) for further action.
All rights reserved to DotNetFunda.Com. Logos, company names used here if any are only for reference purposes and they may be respective owner's right or trademarks.
(Best viewed in IE 6.0+ or Firefox 2.0+ at 1024 * 768 or higher)