Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Using bookmarks with word

Status
Not open for further replies.

BSando

Technical User
Jun 29, 2003
73
AU
I have a word doco I am using bookmarks with.
When the doco is email to someone they are asked if they want to update the data.

Is there a way to stop this?

Some people make things happen, some watch while things happen, and some wonder 'What happened?'
 
You have some objects (fields or OLE) with the AutoUpdate property set to True.
You may try something like this before saving the doco for email:
For Each s In yourDocObject.Shapes
With s
If .Type = msoLinkedOLEObject Then
.LinkFormat.AutoUpdate = False
End If
End With
Next s
For Each f In yourDocObject.Fields
f.LinkFormat.AutoUpdate = False
Next f

Hope This Helps, PH.
Want to get great answers to your Tek-Tips questions? Have a look at FAQ219-2884 or FAQ222-2244
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top