<body>
An avid Internet browser  
Web    Images    GroupsNew!    News    Froogle    more »
  Advanced Search
  Preferences    
 blog by Jane Doe Results 1 - 10 for InternetBrowser.org/blog/ - The web log of an avid Internet browser[definition].  
 
    
RSS XML Feed ATOM XML Feed
« Home

Latest 10 Posts

Funny eBay error
eBay Express is now Official !
LocateCell.com Dislocated
Google's new look
Can't afford an iPod? Then get an mPod.
Hello Newsvine.com - Beta testers are not low class individuals
How to prevent sending emails without subject in Outlook?
eBay Express ?
Hello 2006! Here are my resolutions.
Leap second on 31st December 2005!
 
     Related Blogs
Blog Contest Site
 
     Archives
2005-11-22
2005-11-23
2005-11-24
2005-11-25
2005-11-26
2005-11-28
2005-11-29
2005-11-30
2005-12-01
2005-12-02
2005-12-04
2005-12-05
2005-12-06
2005-12-07
2005-12-09
2005-12-10
2005-12-12
2005-12-13
2005-12-14
2005-12-15
2005-12-16
2005-12-17
2005-12-18
2005-12-19
2005-12-21
2005-12-29
2005-12-31
2006-01-01
2006-01-05
2006-01-06
2006-01-17
2006-01-24
2006-01-27
 
     Other Resources
#1 Freelance Destination
Freelance Ratings
Freelance Contests

How to prevent sending emails without subject in Outlook?

1. Open your outlook mail client.
2. You can do this either by pressing Alt+F11 or frpm Tools -> Macros -> Visual Basic Editor menu. This will open the Visual Basic editor
3. On the Left Pane, you can see "Project1", expand this and you would see “Microsoft Office Outlook Objects”. Expand it again and now you would see “ThisOutLookSession”. (If you are not seeing "Project1", press Ctrl+R or View-> Project Explorer).
4. Double - Click on “ThisOutLookSession”.
5. Copy and Paste the following code in the right pane.(Code Pane)


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


6. Now close the VB editor. From now on , this macro will make sure you do not make the mistake of sending an email without subject

Note:
You need to enable macros in the outlook for this code snippet to work. Also, make sure that under Tools -> Macros -> Security menu the level is NOT set to "Very High".
How to prevent sending emails without subject in Outlook? - Thursday, January 05, 2006 -  

Result Page: 

 


































 


 

Search within results | Language Tools | Search Tips | Dissatisfied? Help us improve


Google Home - Blogger

© 2005 InternetBrowser.org/blog/ - The web log of an avid Internet browser