Reply
 
Thread Tools Display Modes
  #1   Report Post  
Posted to microsoft.public.word.docmanagement
Rosie Rosie is offline
external usenet poster
 
Posts: 14
Default copying email addresses to your address book?

Once all the email addresses are highlighted in blue as a hyperlink in a word
document, how can you then automatically add those email addresses to your
address book, again without having to manually click each one or cutting &
pasting each one manaully.
  #2   Report Post  
Posted to microsoft.public.word.docmanagement
Doug Robbins - Word MVP Doug Robbins - Word MVP is offline
external usenet poster
 
Posts: 8,832
Default copying email addresses to your address book?

The following macro can be used to extract all of the email addresses from a
document

Macro to extract all of the email addresses from a document

Sub CopyAddressesToOtherDoc()


Dim Source As Document, Target As Document, myRange As Range
Set Source = ActiveDocument
Set Target = Documents.Add

Application.ScreenUpdating = False

Source.Activate
Selection.HomeKey Unit:=wdStory
Selection.Find.ClearFormatting
With Selection.Find
Do While .Execute(findText:="[+0-9A-z._-]{1,}\@[A-z.]{1,}", _
MatchWildcards:=True, Wrap:=wdFindStop, Forward:=True) = True
Set myRange = Selection.Range
Target.Range.InsertAfter myRange & vbCr
Loop
End With

Selection.HomeKey Unit:=wdStory
Target.Activate

End Sub


--
Hope this helps.

Please reply to the newsgroup unless you wish to avail yourself of my
services on a paid consulting basis.

Doug Robbins - Word MVP

"Rosie" wrote in message
...
Once all the email addresses are highlighted in blue as a hyperlink in a
word
document, how can you then automatically add those email addresses to your
address book, again without having to manually click each one or cutting
&
pasting each one manaully.



Reply
Thread Tools
Display Modes

Posting Rules

Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Email addresses on DOC file to import to OE6.0 Address Book Bill Berit Microsoft Word Help 0 November 17th 06 06:28 PM
old e-mail addresses that are NOT in address book bu S. Winters Microsoft Word Help 1 September 21st 06 05:33 PM
Getting Names and Addresses into Address Book / Contact List Preacher Ted Microsoft Word Help 1 August 4th 06 05:32 AM
How do I use address book for importing addresses into word Zoning Microsoft Word Help 3 December 16th 05 04:12 PM
add list of email addresses to address book Denise New Users 1 December 6th 05 01:37 PM


All times are GMT +1. The time now is 12:30 PM.

Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
Copyright ©2004-2024 Microsoft Office Word Forum - WordBanter.
The comments are property of their posters.
 

About Us

"It's about Microsoft Word"