Tuesday, February 26, 2008

My list of must have free & opensource softwares

1)Mozilla Firefox
2)7-Zip
3)Audacity
4)Blender 2.45
5)Gimp
6)Inkscape
7)Irfanview
8)Kompozer
10)Launchy
11)Mediacoder
12)MediaMonkey
13)Mozilla sunbird

14)Notepad++
15)OpenOffice
16)Process Explorer
17)Python 2.5
18)Scribus
19)Stellarium

20)SumatraPDF
21)VideoLAN
22)GhostScript
23)Dev C++
24)Web Developer Server Suite



Wednesday, November 21, 2007

Mail without subject

I sent a e-mail to a senior person in a company without a subject line. People will be receiving hundreds of mails and going through whole of the mail is really a difficult task. Its also rude and improper to send a mail without subject lines in a corporate world.This is really an embarrassing moment for the sender. But there is one way you can prevent sending mails without subject line in Microsoft Office Outlook.

1. Open Office outlook
2. Open Visual Basic editor by pressing Alt+F11
3. Go to “Microsoft Outlook Objects” in the Project explorer window, expand it and select “ThisOutLookSession”.
4. Paste the following code in the Code window.


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 + vbMsgBoxSetForeground, "Check for Subject") = vbNo Then
Cancel = True
End If
End If
End Sub
Save it and close.
From now on whenever you send a mail without a subject a prompt box will appear.

Older Posts

Blogger Template by Blogcrowds