outlook-2003

Creating a single file from multiple notes in Outlook VBA

Currently, my VBA code creates a single file for each note. Here's some simplified sample code: Sub saveNotes() Set myNote = Application.GetNamespace("MAPI").GetDefaultFolder(olFolderNotes) For ibi = 1 To myNote.Items.Count fname = myNote.Items(ibi).Subject myNote.Items(ibi).SaveAs "C:\Temp\" & fname & ".txt", 0 Next ...

Stop Outlook from making text a hyperlink

Hi, I have a problem in Outlook (2003) which is really annoying. I don't think it's of my own making but whenever Outlook encounters some words in an email that are simply separated by a dot (.), it makes it into a hyperlink, which I don't want. For example, VB.NET is turned into a hyperlink or not having a space after a fullstop in an ...