Your best source of information and news about vista, vista and winvista on the internet

Vista ARTICLES TOP 50 Spyware Virus Vista SOFT Vista HELP

Outlook

You are currently browsing the articles from MS Windows Vista Compatible Software matching the category Outlook.

Get email address of all users from all mails in an Outlook Folder

Hi,
Ever had the need to extract all email adresses from a folder in Outlook?

Let's say you want to make a reply to a lot of people who are not in your addressbook (contacts), but who have sent you an email which you have archived in a specific folder (or from your Sent items).

I archive my emails all the time using one folder pr. "case", "customer" etc. - and sometimes it's ery useful to be able to write to everyone who had to do with the specific case. This is when it get's a bit frustrating - you have to find a way to get all the email-adresses, and only once!

This is how to do it the easy way:
1. In Outlook press ALT+F11 (opens Microsoft Visual Basic console)
2. Open "ThisOutlookSession" from the Project tree (left menubar)
3. Paste the code below into the project (right window)
4. Press F5 to Run the code (execute)
5. Select the folder you want to use and hit OK (might take some time to complete)
6. Press ALT+G and then copy the email-addresses from the "immediate" window (debug window)

Oh, and remember to use the BCC field if they shouldn't see eachothers email addresses (in the case you want to send an email to all of them).

CODE:
Sub GetEmailAddressesInFolder()
Dim objFolder As MAPIFolder

Dim strEmail As String
Dim strEmails As String
Dim objItem As Object

Set objFolder = Application.GetNamespace("Mapi").PickFolder

For Each objItem In objFolder.Items
If objItem.Class = olMail Then
strEmail = objItem.SenderEmailAddress
If InStr(strEmails, strEmail) = 0 Then strEmails = strEmails + strEmail + ";"
End If
Next
Debug.Print strEmails
End Sub


The above code is tested on Microsoft Outlook 2007, but should work on older Office systems too.

Original source here - I just had to modify the code a bit.


Bye for now!
.

Written by Jakob H. Heidelberg on January 9th, 2009 with no comments.
Read more articles on Outlook and VBA and otherSoftware and scripting and script and Microsoft.

Manage Auto-Complete Items in Outlook

Back in 2007 I wrote an article on how to backup your auto-complete data in Outlook. This tip is for Outlook 2003 - even though I don’t mention it - it works for Outlook 2007 too.

What is Auto-Complete? When you start typing out an email address, outlook will automatically start filling it out for you.

Outlook 2007 Auto Complete

I showed you how to delete these items, but what if you wanted to add items to the auto complete list? Well…I have found just the tool to do that. It is called NK2View from NirSoft.

If you download a copy of it, and run it will automatically find the N2K file for the current profile. See my old article on how to find this file yourself - you might want to do this before using this tool so you can back it up. After running the program, you will see items in the auto-complete database (N2K file).

NirSoft AutoComplete

You can delete items, edit them, export to HTML, and the best part…you can import contacts from your Outlook contact list:

This can be a life saver. If a machine blows up, and you want to restore a decent auto-complete list for the user, you can use it to import their contact list from Exchange.

All in all it is a great tool. Best of all it is free. Make sure you backup your N2K file before saving, since you never know what crazy things Microsoft will do with future patches to break a great tool like this.

Written by intelliadmin on November 20th, 2008 with no comments.
Read more articles on Outlook and otherSoftware.

5 tips for getting your e-mail on vacation

If you’re going on , you’re probably looking forward to getting away from the phone. But e-mail is less intrusive, and many of us want to bring it with us.

That used to be a real chore. But accessing e-mail from anywhere has become easier over the years. Today, it’s not much more difficult than downloading it at the .

The key is finding decent PC access to the on the road. Most hotels offer such access. Even a dial-up account is OK for downloading e-mail. And with Wi-Fi hotspots all over urban areas, fast access is a snap.

Of course, you have to find a way to access your e-mail server. So let’s look at how that can be done. (more…)

Tags: , , , , , , , , , , , , ,

Related posts

Written by Jason on February 17th, 2008 with no comments.
Read more articles on aol and otherSoftware and Microsoft Outlook and e mail and homework and vacation and Outlook and mail program and Outlook Express and Office and Web and computer and Computer and Internet and Internet and Tips and Web and Microsoft.