Wednesday, November 12, 2008

The Matrix Runs on Windows

The Matrix Runs on Windows - CollegeHumor video.

Pretty good for a bunch of people who can't spell humour. ;)

Labels: , ,

Saturday, November 08, 2008

Jim Dale reads Harry Potter

Jim Dale reads Harry Potter at Barnes & Noble.

Labels: ,

Friday, November 07, 2008

Rickrolling turns Rick Astley into an improbable 'best act ever'

"It was not quite the expected result given that U2, Britney Spears and even the Beatles were in contention. But in what will serve as a cautionary tale for the music world of the dangers in soliciting the public vote, Rick Astley, the 1980s crooner, last night was awarded the title of best act ever at the MTV Europe Music Awards."

Labels: ,

Saturday, November 01, 2008

Have you ever forgotten to include a subject in an important email message?

Have you ever forgotten to include a subject in an important email message?

You can setup Outlook to prompt you to enter a subject before sending an email message. The steps are simple and can be completed in only a few minutes. Follow these simple steps to create the reminder:

1. Open Microsoft Outlook.
2. Press Alt+F11. This will open a Microsoft Visual Basic Window. In the left hand panel, you will see a folder called ‘Project1’. Expand the folder by clicking on the plus sign.
3. After expanding the Project1 folder, you will see a folder called "Microsoft Outlook Objects", expand this folder by clicking on the plus sign.
4. Now you will see "ThisOutLookSession". Double click on "ThisOutLookSession" and the code editor window will open.
5. Copy and paste the following code in the code editor window.

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

6. Select ‘File’ and then ‘Save’, and close the Microsoft Visual Basic Window to return to Microsoft Outlook. Now, if you try to send an email without a subject, you will get a prompt reminding you to enter a subject.

To remove the reminder, from Microsoft Outlook, press Alt+F11. In the code editor, select and delete the code you entered for “ThisOutlookSession”. Select ‘File’ and ‘Save’, and close the Microsoft Visual Basic Window.

Labels: ,