PC Review


Reply
Thread Tools Rate Thread

how to add email address to outlook

 
 
moosecoyotebear
Guest
Posts: n/a
 
      10th Apr 2008
can anybody please tell me how thank you
 
Reply With Quote
 
 
 
 
Graham Mayor
Guest
Posts: n/a
 
      10th Apr 2008
From Word?

Sub AddOutlookCont()
Dim ol As New Outlook.Application
Dim ci As ContactItem
Dim strAddress As String
Dim strFullName As String

strAddress = Selection.Range
iResult = MsgBox("Is the email address correct?" & _
vbCr & vbCr & strAddress, vbYesNo, "Address")
If iResult = 7 Then GoTo UserCancelled:

name:
strFullName = InputBox("Enter contact's name" _
& vbCr & "in the format 'Mr. John Smith", "Contact name")

On Error GoTo UserCancelled:

Set ci = ol.CreateItem(olContactItem)
If strFullName <> "" Then
ci.FullName = strFullName
Else
MsgBox "Name cannot be left blank"
GoTo name:
End If
ci.FileAs = strFullName
ci.Email1Address = strAddress
ci.Save
' ol.Quit
Set ol = Nothing
Exit Sub
UserCancelled:
MsgBox "User Cancelled or address not selected"
Set ol = Nothing
End Sub

http://www.gmayor.com/installing_macro.htm
--
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>
Graham Mayor - Word MVP

My web site www.gmayor.com
Word MVP web site http://word.mvps.org
<>>< ><<> ><<> <>>< ><<> <>>< <>><<>


moosecoyotebear wrote:
> can anybody please tell me how thank you



 
Reply With Quote
Reply

Thread Tools
Rate This Thread
Rate This Thread:

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
unable to export Outlook 2007 address book email address Amy Jones Microsoft Outlook 24 24th Jan 2010 08:59 PM
Outlook 2003 Address Book problem - different email address forms =?Utf-8?B?RnJhbmtTcG9rYW5l?= Microsoft Outlook Discussion 3 17th Jan 2006 07:58 PM
With Outlook 2K3 Is it possible to associate a reply-to account for any particular address book send-to email address ? Steve Microsoft Outlook 1 26th Apr 2005 02:48 PM
Making email address the default address in outlook 2000with conne =?Utf-8?B?Qm9iYnk=?= Microsoft Outlook Discussion 0 4th Dec 2004 06:49 AM
auto complete email address not address listed in outlook contacts =?Utf-8?B?cGVyZw==?= Microsoft Outlook Discussion 2 2nd Dec 2004 02:56 PM


Features
 

Advertising
 

Newsgroups
 


All times are GMT +1. The time now is 10:39 PM.